add_action( 'admin_init', 'wpse_136058_remove_menu_pages' );
function wpse_136058_remove_menu_pages() {
remove_menu_page( 'PLUGIN-LICENSE-SLUG' );
}
Thank you very much, but in this plugin isn´t a functions.phpUse snippet in functions.php, so you can update plugin and dont need to remove "license" menu again.
Maybe this:
PHP:add_action( 'admin_init', 'wpse_136058_remove_menu_pages' ); function wpse_136058_remove_menu_pages() { remove_menu_page( 'PLUGIN-LICENSE-SLUG' ); }
Thank you very much, but in this plugin isn´t a functions.php
I dont know it's works but this way is safest method rather than removing lines in plugin file. You need to find only "licence page slug"Use snippet in functions.php, so you can update plugin and dont need to remove "license" menu again.
Maybe this:
PHP:add_action( 'admin_init', 'wpse_136058_remove_menu_pages' ); function wpse_136058_remove_menu_pages() { remove_menu_page( 'PLUGIN-LICENSE-SLUG' ); }
Thank you very much, but in this plugin isn´t a functions.php
the path doesnt exist in the Plugin."wp-includes/functions.php"
That path is NOT in the plugin. It is in WordPress!!!the path doesnt exist in the Plugin.
Thank you very much this was the solution !!supreme-modules-pro-for-divi/includes/class.page-settings.php
Line 425
exact and i write in my first Posting, that i search it in the Plugin = DThat path is NOT in the plugin. It is in WordPress!!!![]()
But why? By doing it in the Plugin it means that anytime you update the Plugin, it needs doing again.exact and i write in my first Posting, that i search it in the Plugin = D