1. Home
  2. Knowledge Base
  3. Known Compatibility Issues
  4. Javascript Conflict With YITH WooCommerce Wishlist Plugin

Javascript Conflict With YITH WooCommerce Wishlist Plugin

There is a javascript conflict with the YITH WooCommerce Wishlist plugin found on WordPress.org which causes an error on the WooCommerce Wholesale Order Form ordering page.

This occurs after the product is added to the cart and persists regardless of which style layout you are using.

Once the YITH WooCommerce Wishlist plugin is disabled, the issue appears to go away.

If you wish to keep using the two plugins together you can install the following workaround which removes the YITH script files on the Order Form page.

Just add this to your functions.php :

function dequeueYITHOnOrderPage() {
    if (is_page('wholesale-page')) // adjust this to the slug of your wholesale ordering page, wholesale-page is the default
        wp_dequeue_script( 'jquery-yith-wcwl' );
}

add_action('wp_enqueue_scripts', 'dequeueYITHOnOrderPage', 999);
Was this article helpful?

Related Articles

Need Support?

Can't find the answer you're looking for?
Contact Support