简体   繁体   中英

Woocommerce / Jigoshop tabs not working in Wordpress

I'm having a problem with my own Wordpress theme which doesn't seem to be loading jQuery properly. Namely I've tried both WooCommerce and JigoShop and on the product pages the tabs are not loading properly (panels both displaying).

http://109.73.175.5/~maktest/product/test-product/

I don't see any errors in the console so not sure what it could be. At first I thought maybe it's to do with the CSS https://github.com/woothemes/woocommerce/issues/2739

But jQuery conflict seems to be culprit unfortunately I can't seem to correct it.

I had a look here J-Query tabs not working in Woocommerce and http://foundation.zurb.com/forum/posts/2284-foundation-5-to-wordpress-js-jquery-scripts

My functions.php file therefore looks like

function register_my_scripts() {
wp_deregister_script('jquery');  
wp_register_script('jquery', "http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js", array(),'2.1.0',false);
wp_register_script( 'google-jquery-ui', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.12/jquery-ui.min.js', array( 'jquery' ) );

wp_enqueue_script('jquery');
wp_enqueue_script('google-jquery-ui');
}

function register_my_styles(){
wp_enqueue_style( 'geeniehair-style', get_stylesheet_uri() );
}

add_action('wp_print_scripts','register_my_scripts');
add_action('wp_print_styles', 'register_my_styles');

This hasn't fixed my problem either. Also I don't know if it's a good idea to de-register the core bundled version of jQuery.

I'm stuck on this so hope someone can have a look and at least point out the blaring obvious if that's what it is.

Moving comment to answer to close the question:

I reloaded your page and noticed that the single-product.js script is not loaded, nor is any other script being loaded in the footer. Are you using wp_footer() in your theme? If not, you absolutely need to be.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM