Thank you for the replay.
At the end, I came up with this solution:
1) Under the plugin settings find “Add related posts to:” and turn off “Feeds“.
2) Add this to the end of your theme functions.php file:
/* Add related posts to feeds */
function ald_crp_rss_custom($content) {
global $post;
global $crp_settings;
$limit_feed = $crp_settings['limit_feed'];
$show_excerpt_feed = $crp_settings['show_excerpt_feed'];
$post_thumb_op_feed = $crp_settings['post_thumb_op_feed'];
if(function_exists('ald_crp')) {
return $content. '<div style="clear:left; padding:15px 0 0 0;">' .ald_crp('is_widget=0&limit='.$limit_feed.'&show_excerpt='.$show_excerpt_feed.'&post_thumb_op='.$post_thumb_op_feed). '</div>';
}
else { return $content; }
}
add_filter('the_excerpt_rss', 'ald_crp_rss_custom');
add_filter('the_content_feed', 'ald_crp_rss_custom');
I hope this would help someone.