• I currently have your theme Evolve installed on my wordpress site and am having a couple of issues I was wondering if you could help me with relating to woo-commerce

    The first one being the product tabs are not working. The default tab is showing but when clicking on the “addition info” tab nothing happens. These tabs work when I switch theme though.

    The other problem is I’m having is having 4 product lines per page… sometimes it will do the 4, other times it has 3…

    Cheers.

    The page I need help with: [log in to see the link]

Viewing 7 replies - 1 through 7 (of 7 total)
  • Hello @wh173y,

    please provide a working website URL. The one you provided is not accessible. thanks

    Anonymous User 16453565

    (@anonymized-16453565)

    hey, @romik84

    your working website URL – https://rjan.zarbi.telligence.net.au/product/nema-1-12b/

    To do that, go to footer.php enter the following script code:

    <script>
    	jQuery(document).ready(function(){
    		jQuery(".woocommerce-tabs a.nav-link").click(function(){
    			jQuery(".woocommerce-tabs a.nav-link").removeClass("show active");
    			jQuery(this).addClass("show active");
    			var tagid = jQuery(this).attr("id");
    			jQuery(".tab-content>.tab-pane").removeClass("active show");
    			jQuery(".tab-content>.tab-pane").each(function(){
    	      if(jQuery(this).attr(id) == "tab-"+tagid){
    	      	jQuery(this).addClass("show active");
    	      }
    	    });
    		});
    	});
    </script>

    Thanx.

    just tested on my localhost and it works just fine.

    @snehalb890, please let me know why need to add the additional JS? it’s not necessary, the tabs script is built-in ??

    Thread Starter wh173y

    (@wh173y)

    @romik84 the product tabs are still not working on my end. they are visible but when you click the “additional info” tab the product description stays when it should change to the additional information… any ideas why you can get it to work and i cant?

    @snehalb890 i tried adding that script to footer.php but only made the information disappear all together :/

    do you use any additional plugins? tried deactivate step by step?

    Thread Starter wh173y

    (@wh173y)

    @romik84 yes there is a plugin in use but already went down that road of deactivate and even deleting the plugin with no change

    do you have chance to test the theme on another host? localhost? at this point I have no idea as I compare my code with yours …. sigh :S

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Product Tabs Not Working’ is closed to new replies.