• Hey,

    Here is the code snippet for anyone who wants to disable the plugin banner:

    function remove_premmerce_banner() {
        global $premmerce_url_manager_admin;
        if (isset($premmerce_url_manager_admin)) {
            remove_action('admin_notices', array($premmerce_url_manager_admin, 'renderAdminBanner'));
        }
    }
    add_action('init', 'remove_premmerce_banner');

    Just add this to your functions.php. This will remove the banner programatically and will not touch any other alerts or add anything extra to your WordPress Admin. If you have any questions about it feel free to ask.

  • The topic ‘How to remove Premmerce Permalink Manager for WooCommerce banner permanently’ is closed to new replies.