efpacc
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF®)] Wysiwyg Editor issueTo save you the visit to the ACF forum
I see that in WordPress 4.6 with ACF 4.5.3, I disable the “Disable the visual editor when writing” in the user option, the editor works fine, if I enable the option “Disable the visual editor when writing” the problems comes back again.
Juanka – user in ACF forum
https://support.advancedcustomfields.com/forums/topic/tinymce-error/#post-42883indeed it stops working when the visual editor option is active.
Curious thing is that the option was not activated to begin with, so i activated it and saved the profile, then deactivated it and it started to work again.
This worked for me, hope it helps
- This reply was modified 9 years, 9 months ago by efpacc.
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF®)] Wysiwyg Editor issueHi Guys,
i found some answer in the forums for ACF, read the end where Juanka user is explaining something, thanks
https://support.advancedcustomfields.com/forums/topic/tinymce-error/#post-42883
Thanks my Friend, look here was the problem, in my single.php file i had a loop for the most popular post at the end of the article, doesnt matter where is placed it makes the comments behave different, i will use a plugin for that instead. thanks.
<?php $popular = new WP_Query(‘orderby=comment_count&posts_per_page=5’); ?>
-
<?php while ($popular->have_posts()) : $popular->the_post(); ?>
-
“><div class=”thumb_image_popular” style=”background-image:url(‘<?php postimage();?>’);”></div>
<h2>“><?php the_title(); ?></h2>
<?php endwhile; ?>
<div class=”clear”></div>
</div>Thanks that was the last resources i have, i will try that, i will let you know what was it once i find it, thank you so much for your quick answers.
I know is super weird, it has style.css, index.php, header,footer, tags,archive,category,search and that is all, i think is better if i rebuild the theme, it just doesn’t make sense.
here is the code of the file, it works in other themes except in mine, is there something else that needs to added to make it work in my custom theme, there nothing in the function file right now. Thank you so much!