Well, what I have tried to solve this:
1) Deactivating Advanced Excerpt – that helps, but still a footnote is now within the text – although I have deactivate the footnotes for excerpts in the expert mode-settings.
2) My footnote markers set to <!--FOOTNOTE_____
and _____FOOTNOTE-->
in the hope that it is recognized as a comment. Doesn’t work.
3) Updated content.php of my theme to:
if (is_single()) {
the_content(
sprintf(
__( 'Continue reading %s', 'twentyfifteen' ),
the_title( '<span class="screen-reader-text">', '</span>', false )
)
);
} else {
the_excerpt();
}
Doesn’t work. Same as 1).
* At least I tried with
global $g_obj_MCI_Footnotes;
remove_filter( 'the_content', array( $g_obj_MCI_Footnotes->MCI_Footnotes_Task, 'the_content' ), PHP_INT_MAX );
before the the_content(...)
-call to remove the approbiate filter in content.php-template of my theme. Doesn’t work.
May be the code for deactivating is wrong – but I think, for my situation, to use Advanced Excerpt, which is important for me, it seems the right way.
Could anyone help how to deactivate and reactivate the plugins execution in content.php, when it shows posts on a posts-page?
Thank you very much!