- This topic is empty.
-
AuthorPosts
-
May 11, 2017 at 5:41 am #18929
Nitko Kranjcar
ParticipantThis is the real fix https://wordpress.org/plugins/wp-nag-hide/
May 21, 2017 at 3:50 pm #18980tony n
ParticipantHi 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 #19040Doggaz The Demon
ParticipantHi 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,
DoggazJune 23, 2017 at 5:55 pm #19087Krishna Chowdary
ParticipantThanks Rick..Removing 110-121 lines worked
June 23, 2017 at 5:56 pm #19088Krishna Chowdary
Participantplugin will work Normally. These methods are to remove nag only
August 4, 2017 at 7:02 am #19191George Lucena
ParticipantIt WORKS PERFECTLY!
CONGRATULATIONS!
August 28, 2017 at 7:44 am #19219Jan de Wit
ParticipantThe 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 MarketSeptember 5, 2017 at 8:59 pm #19232Adam Thomson
ParticipantClaude’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 #19234Van Hallman
ParticipantWhen are the Yoast plugins going to be updated?
September 11, 2017 at 2:13 pm #19246saulbw
ParticipantAnother 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 #19259Sean Dempsey
ParticipantEasy 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 #19384Noah Baker
ParticipantI 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 #20328Samar Hayat
Participantguys 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 #20329Samar Hayat
Participanti 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 #20440Billingy95 n/a
ParticipantThe 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 #20497Tom Tran
ParticipantThe “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 #20698Bill 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 #21051alohaberlin
ParticipantWorking 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.statusand change to
if(403!=e.statusSave the file and reload the page (delete browser cache before)!
Et voilá: No more nagging notice!
-
This reply was modified 6 years, 2 months ago by
alohaberlin.
May 7, 2019 at 3:01 am #21341Rachel Stinson
ParticipantTry 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 #21547Janine Pendleton
ParticipantI 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 #21940yournamehere
ParticipantI 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. :-)
-
This reply was modified 6 years, 2 months ago by
-
AuthorPosts
- You must be logged in to reply to this topic.