Hi @nluecke Thank you for the file.
The problem is caused by KingComposer. With Freesoul Deactivate Plugins you disabled KingComposer on the desktop version, but not on mobile.
I’ve detected the part of the code of KingComposer that causes this issue. Changing directly its code the problem is solved on my local computer, but of course, this is not a solution, you would lose the fix with the next update of KingComposer.
I’m trying to find a way to solve the problem changing only the code of my plugin without touching the code of KingComposer. When it’s ready, I will provide you a beta version to test.
Until then, if you want a quick and dirty solution, you can open the file wp-content/plugins/kingcomposer/includes/kc.fronnt.php and replace these lines from 96 to 101:
if (isset($post) && !empty( $post->post_content_filtered))
{
$post->post_content = html_entity_decode( stripslashes_deep( $post->post_content_filtered ) );
}
$post->post_content = apply_filters('kc_raw_content', $post->post_content_filtered, $post->ID);
with the following lines
if (isset($post) && !empty( $post->post_content_filtered))
{
$post->post_content = html_entity_decode( stripslashes_deep( $post->post_content ) );
}
$post->post_content = apply_filters('kc_raw_content', $post->post_content, $post->ID);
You can see the original code here https://plugins.trac.www.ads-software.com/browser/kingcomposer/trunk/includes/kc.front.php
The next version of SCFM will work also with the original KingComposer code. If you prefer to wait, take into account that it will require a few days.
-
This reply was modified 4 years, 7 months ago by
Jose.