• Hi
    I have problem, i am working on artificier theme from wootheme and woocommerce plugin.

    at first, it works fine but now add to cart does not appear on variable product, product tab also does not work as used to be. Seem jquery problem but i do not know ho to fix it.

    I have also tried to deactivated all plugin, now it is running with 3 plugins: woocommerce, wp seo and cloudinary.

    I have tried to use default theme as well, but not work.
    I have tried so many methods posted here, but not work.

    Now, i am using default theme, check here: http://wowunik.com/product/mug-jumbo-hk-dan-sendok-hk235-2/

    help me please…
    thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • You need to post on the WooCommerce forum here:

    http://wordpress.org/support/plugin/woocommerce

    Or you can pay for help on Woo’s forums.

    Also try deactivating your other plugins – not all plugins will work together.

    To check for JS errors see:

    http://codex.wordpress.org/Using_Your_Browser_to_Diagnose_JavaScript_Errors

    This issue is a hosting one. Contact your hosting provider for assistance with MOD_SECURITY.
    If you can not do that then you will need to add some functions to your theme functions.php file and change the name of the files.
    First First First! You MUST rename:

    wp-content/plugins/woocommerce/assets/js/jquery-cookie/jquery.cookie.js
    wp-content/plugins/woocommerce/assets/js/jquery-cookie/jquery.cookie.min.js

    to:

    wp-content/plugins/woocommerce/assets/js/jquery-cookie/jquery_cookie.js
    wp-content/plugins/woocommerce/assets/js/jquery-cookie/jquery_cookie.min.js

    Now then add this to your theme functions.php file:

    add_action( 'wp_enqueue_scripts', 'custom_frontend_scripts' );
    
    function custom_frontend_scripts() {
    
      	global $post, $woocommerce;
    
    		$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
    		wp_deregister_script( 'jquery-cookie' );
    		wp_register_script( 'jquery-cookie', $woocommerce->plugin_url() . '/assets/js/jquery-cookie/jquery_cookie' . $suffix . '.js', array( 'jquery' ), '1.3.1', true );
    
    }

    I am currently using woocommerce, and I’ve been testing the add to cart functions for about a month. I just upgraded to woocommerce 2.0.20 and everything works except for the add to cart function. I can not add products to the cart. I deactivated all plugins, verified the php is set up correctly and still no luck. when I click the add to cart button the request is made but there is no response from the server. It stays in a pending state.

    I’d suggest you create your own thread on the WooCommerce forum – this thread is not in the correct place – try here:

    http://wordpress.org/support/plugin/woocommerce#postform

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[plugin: woocommerce – add to cart is not working on variable product’ is closed to new replies.