Hi Martin,
Apologize for the delay. I missed this thread. Since this is a custom requirement, I wrote below modification as you requested.
Can you please paste the PHP below on your site?
add_filter( 'srr_mod_item_html', 'srr_link_bottom', 10, 3 );
function srr_link_bottom( $html, $feed_url, $feed_item ){
$html[ 'after' ] = $html[ 'after' ] . '<p><a href="' . $feed_item->get_link() . '" target="_blank">' . $feed_item->get_link() . '</a></p>';
return $html;
}
You can follow the articles below, if you are new to inserting PHP code on your site.
1) https://www.aakashweb.com/articles/create-site-specific-wordpress-plugin-custom-code/
2) https://www.aakashweb.com/articles/best-methods-to-insert-custom-php-code-in-wordpress/
Thanks,
Aakash