@gordonlangley Could you explain a bit more about what you are ultimately trying to achieve? Thanks!
Hello – thanks for getting back to me. I’d like to hide the button which appears in the WYSIWTG Editor. We don’t want to see the little orange button in the editor. How do I switch that off please.
Use this filter in your functionality plugin or functions.php:
add_filter('mce_external_plugins', function ($plugins) {
unset($plugins['wprss']);
return $plugins;
});
Cool that worked thanks! I’m still seeing it in WP Bakery Page Builder’s editor, is there a snippet I could use to loose it there as well? Or better still add an option in your plugin settings not to show the button.
Many thanks!!
Gordon
@gordonlangley We’re not familiar with the code in third party page builder plugins, so perhaps you could check with the plugin developers themselves.