Welcome to GPLDL - we are still beta - please report any bugs via the contact form.

GPLDLGPLDL
GPLDL
Download the most popular GPL licensed Premium WordPress Themes & Plugins and WooCommerce Extensions for FREE!
  • Blog
    • Blog Articles
    • Latest Updates & Additions
  • Repository
    • Full Repository
    • Premium WordPress Themes
    • Premium WordPress Plugins
    • Premium WooCommerce Extensions
    • Special Gifts for Premium Members
    • Tutorials
  • Forum
  • Free Membership
  • Donations
  • My GPLDL Account
  • Sign In
Menu back  

Get rid of Yoast SEO Premium nagging

  • This topic is empty.
Viewing 21 posts - 31 through 51 (of 51 total)
← 1 2
  • Author
    Posts
  • May 11, 2017 at 5:41 am #18929
    Nitko Kranjcar
    Participant

    This is the real fix https://wordpress.org/plugins/wp-nag-hide/

    May 21, 2017 at 3:50 pm #18980
    tony n
    Participant

    Hi all,

    Should I apply any of the above methods to make the plugin work?

    Or the plugin is working fine and these methods are only to remove the nagging?

    Thanks

    June 8, 2017 at 6:15 am #19040
    Doggaz The Demon
    Participant

    Hi Droleba Satgalab,

    Thank you for your solutions, it worked great!

    Also, want to say thanks to all those that have contributed to finding a workaround. All your efforts are appreciated by us all.

    Regards,
    Doggaz

    June 23, 2017 at 5:55 pm #19087
    Krishna Chowdary
    Participant

    Thanks Rick..Removing 110-121 lines worked

    June 23, 2017 at 5:56 pm #19088
    Krishna Chowdary
    Participant

    plugin will work Normally. These methods are to remove nag only

    August 4, 2017 at 7:02 am #19191
    George Lucena
    Participant

    It WORKS PERFECTLY!

    CONGRATULATIONS!

    August 28, 2017 at 7:44 am #19219
    Jan de Wit
    Participant

    The plugin is changed. This is my working solution:

    Locate the file using FTP or a directory browser: */wp-content/plugins/wpseo-woocommerce/wpseo-woocommerce.php

    Around line 82 find:
    $this->license_manager = $this->load_license_manager();

    And change it to this:
    // $this->license_manager = $this->load_license_manager();

    Done!

    – Jan
    Domain Names Market

    September 5, 2017 at 8:59 pm #19232
    Adam Thomson
    Participant

    Claude’s plugin still works but div.error needs to be changed to div.notice.notice-error.yoast-notice-error or just .yoast-notice-error. No idea why people have so much trouble with this. Only the CSS class ever gets changed. Just inspect it and amend as necessary…

    September 6, 2017 at 3:42 pm #19234
    Van Hallman
    Participant

    When are the Yoast plugins going to be updated?

    September 11, 2017 at 2:13 pm #19246
    saulbw
    Participant

    Another method which directly removes the action that shows the notice:

    add_action('admin_init', function()
    {
    	global $wp_filter;
    
    	if (!empty($wp_filter['admin_notices']->callbacks[10])) {
    		foreach ($wp_filter['admin_notices']->callbacks[10] as $hook_key => $hook) {
    			if (is_array($hook['function']) && $hook['function'][0] instanceof \Yoast_Plugin_License_Manager && $hook['function'][1] == 'display_admin_notices') {
    				unset($wp_filter['admin_notices']->callbacks[10][$hook_key]);
    			}
    		}
    	}
    });
    September 13, 2017 at 4:47 pm #19259
    Sean Dempsey
    Participant

    Easy to remove. We wrote up a quick summary here:
    https://loudcanvas.com/blog/disable-yoast-php-version-warning-wordpress/

    October 5, 2017 at 4:25 pm #19384
    Noah Baker
    Participant

    I just use this free plugin: https://wordpress.org/plugins/wpspring-remove-yoast-license-warning/

    Works like a charm, no coding.

    August 25, 2018 at 3:47 pm #20328
    Samar Hayat
    Participant

    guys is there a new update to activating the latest 8.0 version?
    I’m not able to activate with any of the above methods…

    thanks

    August 25, 2018 at 3:58 pm #20329
    Samar Hayat
    Participant

    i mean the plugin needs me to active the premium features by signing up on their website. so what exactly is the solution for that?

    October 6, 2018 at 5:04 am #20440
    Billingy95 n/a
    Participant

    The website owners should take SEO seriously because it is the one and only techniques to gain high ranking in the organic results. Other techniques are paid and super expensive if you want long term results. Even I use the services from the seo consultant Los Angeles for my business and having great experience.

    October 29, 2018 at 6:33 am #20497
    Tom Tran
    Participant

    The “new” issue occurs on version 9.0.2:
    The notice is shown at the composing post/product page:
    “You haven’t activated your Yoast SEO Premium subscription yet! That means you are not benefiting from all the features you have, so please activate your subscription here”.

    Please help to solve it.

    Thanks

    December 19, 2018 at 2:48 pm #20698
    Bill Gates
    Participant

    …to get rid of the ‘nags’ and ‘ads’ on the right side of the Yoast SEO Settings Page, you can buy Yoast or look in this directory: YourWebSitesRootDirectory/wp-content/plugins/wordpress-seo-premium/admin/views

    look for this file: sidebar.php and delete all the contents of the file and save the empty file.

    No more ads, no more nags.

    I tested it and did not lose any functionality. I also looked at the code and every function referred to the yoa.st web site, so there really isn’t any functionality in the PHP code other than to nag and present ads.

    February 13, 2019 at 5:19 am #21051
    alohaberlin
    Participant

    Working solution for Yoast SEO Premium version 9.5 (any maybe following):

    To remove the annoying notice “You have not activated your Yoast SEO Premium subscription yet! This Means you are missing out on features you for a paid, SO the activate your subscription now!” in the composing post/product page do the following:

    in the file wp-content / plugins / wordpress-seo-premium / premium / assets / js / dist / wp-seo-premium-metabox-950.min.js
    find
    if(403===e.status

    and change to
    if(403!=e.status

    Save the file and reload the page (delete browser cache before)!

    Et voilá: No more nagging notice!

    • This reply was modified 6 years, 3 months ago by alohaberlin.
    May 7, 2019 at 3:01 am #21341
    Rachel Stinson
    Participant

    Try using this code, will definitely help you to remove the persistent nagging of Yoast. Because it works!
    function remove_yoast_license_nag_from_admin_page() {
    echo
    ‘<style>
    div.yoast-notice-error {
    display: none;
    }
    </style>’;
    }

    add_action(‘admin_head’, ‘remove_yoast_license_nag_from_admin_page’);

    August 5, 2019 at 12:18 pm #21547
    Janine Pendleton
    Participant

    I get an error if i try to add the code from Rachel.

    Any idea what is up with it?

    December 18, 2019 at 11:06 am #21940
    yournamehere
    Participant

    I can edit the entire nag in:

    /wp-content/plugins/wordpress-seo-premium/premium/assets/js/dist/wp-seo-premium-metabox-1271.min.js

    Last line has all the BS. Simple to change to a more encouraging text. :-)

  • Author
    Posts
Viewing 21 posts - 31 through 51 (of 51 total)
← 1 2
  • You must be logged in to reply to this topic.
Log In
Search the Repository
We reward your Donations!
We need your Donation to maintain and grow the GPLDL WordPress Repository - and we reward your generosity with Premium Memberships allowing you to download even more files.

Learn more about donations & rewards...
News from our blog
  • What is the Battle Between WordPress’s Matt Mullenweg and WP Engine about?
    October 31, 2024
  • Why GPLDL Cannot Accept Your WordPress Plugin or Theme Submission
    February 20, 2024
  • How to Ensure Your WordPress Plugin or Theme is Authentic and Secure
    January 25, 2024
Latest Updates & Additions
  • GPLDL News: 151 Updates & Additions today – Download 2847 Premium WordPress items!
    May 25, 2025
  • GPLDL News: 176 Updates & Additions today – Download 2847 Premium WordPress items!
    May 17, 2025
  • GPLDL News: 154 Updates & Additions today – Download 2844 Premium WordPress items!
    May 11, 2025
Free Downloads?

Most of the WordPress Plugins & Themes in the GPLDL repository are available for free download - yes, free! - that is even better than buying at a discount, rebate, promotion or with a coupon code.

After signing up for a free membership, you will instantly get a download link to GPLDL's WordPress plugins and themes including future updates.

Where is the catch? There is none. We re-distribute 100% exact copies of GPL-licensedWordPress items, completely unmodified - that means *not* nulled, cracked or otherwise modified code without any serial numbers, API keys or support.

How can you help? If you like our service, please spread the word. If you can afford to financially support us, please make a donation. All donations will be used for (recurring) subscriptions of WordPress plugins & themes and to grow the catalog!

Tags
check code commercial copyleft Copyright developers Download Extensions fork Free fsf functions.php GNU General Public License GNU Public License GPL Guide HowTo Instructions Legal license malware nulled open source Plugin Plugins Premium proprietary software redistribution secure Security serial Software software freedom software updates step by step theme Themes tutorial Update usage Website WooCommerce wordpress WordPress Plugins WordPress Themes
Welcome to GPLDL!
scr02We love innovation and we believe in free software!

That's why we strive to make the world's best Premium WordPress Themes & Plugins and WooCommerce Extensions & Themes available for everyone!

Find us on:

FacebookTwitterRssPinterestWebsite
Latest Blog Posts
  • What is the Battle Between WordPress’s Matt Mullenweg and WP Engine about?
    October 31, 2024
  • Why GPLDL Cannot Accept Your WordPress Plugin or Theme Submission
    February 20, 2024
  • How to Ensure Your WordPress Plugin or Theme is Authentic and Secure
    January 25, 2024
Latest Updates & Additions
  • GPLDL News: 151 Updates & Additions today – Download 2847 Premium WordPress items!
    May 25, 2025
  • GPLDL News: 176 Updates & Additions today – Download 2847 Premium WordPress items!
    May 17, 2025
  • GPLDL News: 154 Updates & Additions today – Download 2844 Premium WordPress items!
    May 11, 2025
About GPLDL
  • About GPLDL
  • Need Help?
  • F.A.Q.
  • Terms of Service
  • Privacy Policy
  • Contact
GPLDL - all Rights reserved.
  • About GPLDL
  • Need Help?
  • F.A.Q.
  • Terms of Service
  • Privacy Policy
  • Contact
  • Sign In
GPLDL Widget Menu