Here’s the answer as of WP 6.1.1
(assuming you have no other plugin conflicts)
On any page/post using the CFS WYSIWYG field, you must update your page with the main WordPress editor set to VISUAL mode.
]]>in the many different solutions I was unable to get the Pin Infobox (simple and advanced) to work.
Changed my config.php file but without effect.
Don’t use the classic editor, but tried it.
Tried with the advanced tinyMCE editor, also without result
TinyMCE folder “wp-includes\js\tinymce” has 755 folder permissions.
Even more options?
Thanks
]]>Wordfence is flagging this plugin for “modified plugin file.”
Is this normal?
* Modified plugin file: wp-content/plugins/tinymce-advanced/mce/wptadv/plugin.js
* Modified plugin file: wp-content/plugins/tinymce-advanced/mce/wptadv/plugin.min.js
* Modified plugin file: wp-content/plugins/tinymce-advanced/plugin-assets/tadv.css
* Modified plugin file: wp-content/plugins/tinymce-advanced/plugin-assets/tadv.js
* Modified plugin file: wp-content/plugins/tinymce-advanced/tadv_admin.php
* Modified plugin file: wp-content/plugins/tinymce-advanced/tinymce-advanced.php
* Modified plugin file: wp-content/plugins/tinymce-advanced/uninstall.php
Yet when I click on “View Differences” Wordfence says:
“There are no differences between the original file and the file in the repository.”
Should I just “Mark as Fixed” or “Ignore” ?
]]>Here is the code in my functions.php file:
function add_style_select_buttons( $buttons ) {
array_unshift( $buttons, 'styleselect' );
return $buttons;
}
add_filter( 'mce_buttons_2', 'add_style_select_buttons' );
function my_custom_styles( $init_array ) {
$style_formats = array(
array(
'title' => 'Fancy Words',
'block' => 'div',
'classes' => 'fancywords',
'wrapper' => true,
)
);
$init_array['style_formats'] = json_encode( $style_formats );
return $init_array;
}
add_filter( 'tiny_mce_before_init', 'my_custom_styles' );
The text editor wraps correctly with their buttons, why not the visual editor with it’s dropdown styles?
]]>How can I fix this?
Thanks
]]>On places like StackExchange and StackOverflow, there is an option to use what appears to be a version of TinyMCE as an uploader for visual images (as well as to be used to comment on)….
It looks very similar to now your plugin displays. Except for one thing: there is no “Text” tab (no Text Editor)….and all you ever see is the Visual Editor there.
And there are no tabs, at all…..
I want this. I need this.
So, how do I, when using your plugin:
– get TinyMCE via your plugin to always initialize on its own and show the Visual Editor…? So when a user gets to the forum page, the Visual Editor is already showing, on its own, without the user having to click on anything???
– get TinyMCE via your plugin….to SHOW NO TABS at all, ever?
Thanks in advance for any and all assistance. Your plugin works beautifully, and I can’t wait to fully use it on my site. If I can’t get these things to happen though, I’m afraid I won’t be able to. My users are not tech-savvy, and would be exceptionally confused when they can’t find the area to upload (and wouldn’t realize they have to click the Visual Editor tab)….
Please help!!!
]]>I have very low-tech users, and they’ll be getting confused by seeing a “Text” tab appear….and will certainly at one point get a forum post all screwed up by using it.
So I’d like to disable the function and the appearance of the Text Editor tab.
Also: since I’m not having more than just the Visual Editor there, I have no need to display the tab that says, “Visual”….but I still want to use the Visual Editor for comments on my site.
Is that possible?
Thanks in advance for all your help!
]]>Also: would your plugin use the same Tiny MCE editor that shows up in forums, or is it its own version of Tiny MCE?
Please let me know. Thanks!
]]>I activated HTML support for the user description, so my users can create nice presentation pages.
The problem is that when a user edits his biography, he has to know HTML code if he wants to define titles, links, etc
I’d like to activate tiny MCE Editor or an equivalent tool, is there a setting / a plugin that could do that ?
Or maybe I can add a few lines in functions.php ?…
I found how to activate wp_tiny_mce for that field when editing through admin backoffice, but it does not show for simple users editing their profile through front office…
Thanks in advance !
]]>