You can try the below until it is fixed in the update:
at plugin_core/core_actions.php in plugin folder, on line 11:
if(in_array(‘get_the_excerpt’, $GLOBALS[‘wp_current_filter’]) OR ‘post’ !== get_post_type()) $return = $content;
to
if(in_array(‘get_the_excerpt’, $GLOBALS[‘wp_current_filter’]) OR ‘post’ !== get_post_type() OR !is_single()) $return = $content;
Here !is_single(); check should prevent filtering from happening in the loop.
the_content filter is being applied in your loop, possibly because you dont’ have excerpts saved for your posts. That’s why WP is possibly picking up the content and then clipping it.
Let me know if this works.
Made the modification and no changes
This will probably do it:
Same code in the same place to:
if(in_array(‘get_the_excerpt’, $GLOBALS[‘wp_current_filter’]) OR ‘post’ !== get_post_type()) {
$return = $content;
break;
}
Without the earlier modification suggested, of course. Just try turning that block to this. This has to detect that loop is active, and then just assign original content to return.
Tested to work. If it doesn’t, it may be that your theme is doing some things differently. Then introducing additional single post checks should do the trick. I’ll let you know if it comes to that.