Activating a Theme Options page to Editor – not working [closed]
Ok. Found the guilty one: it’s White Label CMS. Activating only the Site Options did not working, when activated the Menus too, it’s working.
Ok. Found the guilty one: it’s White Label CMS. Activating only the Site Options did not working, when activated the Menus too, it’s working.
It is the theme author’s responsibility to give an admin interface that will allow the client to create the content in the form he wants. Layout related options and shortcodes are just a way for the author to justify doing a poor job in understanding the client’s needs and helping the client to easily manage … Read more
No paragraphs for a part of text in editor
Add the following to your themes functions.php file and it will default to the editors text view… add_filter( ‘wp_default_editor’, create_function(”, ‘return “html”;’) );
Editor have not permissions for a plugin
Custom shortcode editor [BackboneJS & TinyMCE)
It is possible to add line breaks using in the “Text” view like so: https://cloudup.com/cb5PCT2sWRP One thing to be aware of is that once you add the HTML for non-breaking spaces, you must remain in the “Text” view for future edits; switching back and forth to the visual editor will remove the above code.
Visual Editor not working for user on multiple computers
Should be as simple as this: add_filter(‘pre_update_option_permalink_structure’, ‘my_chgcb’); function my_chgcb($newval, $oldval) { return $oldval; } This disables any changes to the permalink setting. You can additionally hide it using CSS.
There are probably several approaches to doing this. One approach would be to select the categories and comments divs in your theme and use css to remove them. Example: In your style.css .entry-utility-prep-cat-links { display:none; }