Quantcast
Channel: WordPress.org Forums » [WooCommerce] Support
Viewing all articles
Browse latest Browse all 104029

Martin on "[Plugin: WooCommerce - excelling eCommerce] Add to cart not showing for variable product"

$
0
0

Here’s the fix for my theme … until it gets fixed in the plugin itself …

Add this to your functions script:

function fix_woo_var_cart()
{
  wp_enqueue_script('add-to-cart-variation', '/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart-variation.js',array('jquery'),'1.0',true);
}
add_action('wp_enqueue_scripts','fix_woo_var_cart');

That’s my crude code taken from another forum thread but it works fine.


Viewing all articles
Browse latest Browse all 104029

Trending Articles