Share
YITH: Warning! You didn’t set license key for the following products:
Question
I get error below on wordpress admin
Warning! You didn’t set license key for the following products:
YITH WooCommerce Ajax Search PremiumYITH WooCommerce Category Accordion PremiumYITH WooCommerce Checkout ManagerYITH WooCommerce Product Add-Ons Premiumwhich means you’re missing out on updates and support. Enter your license key, please.
How can I disable or hide it !
Attachment
solved
0
Nobuna
5 years
17 Answers
18773 views
0
Answers ( 17 )
Hello,
Insert the following code in the functions.php of your theme:
function yith_remove_notice ($ show_license_notice)
{
return false;
}
add_filter (“yith_plugin_fw_show_activate_license_notice”, “yith_remove_notice”, 99999999999999999, 1);
If you have problems, do not hesitate to contact us, we will be happy to help you.
Best regards.
Thank you that worked for me.
Hi
I think this is true:
function yith_remove_notice ($show_license_notice)
{
return false;
}
add_filter(‘yith_plugin_fw_show_activate_license_notice’, ‘yith_remove_notice’, 99999999999999999,1);
This is correct solution
BUT
When you get error 500 you was mistaken with quotation marks. You must first copy-paste in a text-editor and correct all quotation marks and after then paste functions.php. You will not see error 500.
And you dont need any plugin for that
My site gives “HTTP ERROR 500” When I do Noobuna’s and Mahmood’s advices.
How can I solve this?
Hi,
Consider hiding the license activation reminders through a plugin like “WP Hide Plugin Updates and Warnings.“ This plugin is free and very popular in the WordPress community. Make sure to check the official documentation for more information!
Best regards.
im find some plugin do that name “Disable admin notices individually”
hello
these codes and plugin didn’t solve warning of yith notice.
i used code in functions.php but my site downed, i forced to delete code.
The correct answer is this
function yith_remove_notice ($show_license_notice) {
return false;
}
add_filter (“yith_plugin_fw_show_activate_license_notice”, “yith_remove_notice”, 99999999999999999, 1);
Hi
Any answer to can hide all the notice (not only Yith) that appears on the admin panel?
Thanks in advance.
I not web page code add funcion.php not code
This code no longer works
function yith_remove_notice ($show_license_notice)
{
return false;
}
add_filter(‘yith_plugin_fw_show_activate_license_notice’, ‘yith_remove_notice’, 99999999999999999,1);
Consider hiding the license activation reminders through a plugin like “Disable admin notices individually” This is a free plugin that is very popular in the WordPress community. Make sure to check the official documentation for more information!
Hello, guys.
Follow this way:
/wp-content/plugins/yith-woocommerce-quick-view-premium/plugin-fw/licence/lib/yit-plugin-licence.php
Then find:
add_action( ‘admin_notices’, function () {
$this->activate_license_notice();
}, 15 );
This code is around 80-83 lines. Simply deactivate it.
For example:
add_action( ‘admin_notices’, function () {
// $this->activate_license_notice();
}, 15 );
Wonderful. This one really works. No need to download a new plugin to get this done.
This plugiin works for me
Disable admin notices individually
Use Disable admin notices individually or just make “display: none” on CSS