I ran into the same problems after updateing to 1.8.4 (no errormessages, but no related postes were displayed anymore).
After doing some code investigations I found the problem in the file
baw-manual-related-posts/inc/frontend-noajax.inc.php in function bawmrp_the_content:
if ( ! $post || empty($bawmrp_options['in_content']) || $bawmrp_options['in_content']!='on' && $content!='' || apply_filters( 'stop_bawmrp', false ) ) {
return $content;
}
when using the do_shortcode method for displaying the related posts usually the $bawmrp_options['in_content']
is empty and you will see nothing because $content
is also an empty string.
I replaced these lines with the code in older releases which is:
if ( ! $post || $bawmrp_options['in_content']!='on' && $content!='' || apply_filters( 'stop_bawmrp', false ) ) {
return $content;
}
and it worked fine for me.
@julio: Please take a look at my workaround and refactor your code in order to get the problem solved.
For anyone who is also applying the workaround: Please note that this code changes are reverted when you update the plugin!