• Resolved robfaas

    (@robfaas)


    How can I remove this annoying Nag Message WITHOUT installing the plugin:
    ‘You can get a fully functional ready site with Responsive. Browse 100+?ready site templates?Install the Responsive Starter Templates plugin to get started.’

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @robfaas ,

    If you want to remove the notice banner without installing the plugin you have put the given code in your child theme’s functions.php file.

    add_action( ‘init’, ‘remove_my_action’, 20 );

    function remove_my_action() {

        remove_action( ‘admin_notices’, ‘responsive_welcome_banner_notice’,10 );

    }

    Best Regards

    Thread Starter robfaas

    (@robfaas)

    Thanks! Would be better when it could be removed by closing x, but this will do for now.

    • This reply was modified 1 year, 6 months ago by robfaas.

    Hi @robfaas ,

    Thanks for the feedback.

    We’ll most certainly take that into account for a future version. if more requests similar to this come in.

    Best Regards.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Nag Message Starter Templates plugin’ is closed to new replies.