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 Premium

which means you’re missing out on updates and support. Enter your license key, please.

How can I disable or hide it !


Attachment
solved 0
lagalaga 5 years 17 Answers 18773 views 0

About lagalaga

Answers ( 17 )

  1. 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.

    Best answer
  2. 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

  3. My site gives “HTTP ERROR 500” When I do Noobuna’s and Mahmood’s advices.

    How can I solve this?

  4. 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.

  5. im find some plugin do that name “Disable admin notices individually”

  6. 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.

  7. 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);

  8. I not web page code add funcion.php not code

  9. 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);

  10. 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!

  11. 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 );

  12. This plugiin works for me
    Disable admin notices individually

  13. Use Disable admin notices individually or just make “display: none” on CSS

Leave an answer

Browse
Browse