Home Page › Forums › WooCommerce Custom Tabs › tab content BREAKS CHROME
- This topic has 7 replies, 2 voices, and was last updated 5 years, 8 months ago by
WebshopLogic.
-
AuthorPosts
-
Participant
tab content BREAKS CHROME
takes forevere to load on iphone safariplease Help us
Participanthttps://420life.com/product/710-life-enail/
-
This reply was modified 5 years, 8 months ago by
WebshopLogic.
KeymasterWhat do you mean that breaks Chrome? Is there any error message? Please also see the console of Chrome, if there any error message there (using ctrl+shift+j).
This can be a site specific problem, thus we have to see it to be able to help you (a test site is also good for us, where the problem can be seen)
Maybe there is a plugin or theme conflict on your site.It can be useful if you temporarily try the plugin with another theme, and disable all the other plugins to find out if there are any theme or plugin collusion.
Thanks,
Peter Rath
webshopLogicKeymasterThanks for the test environment.
We can find the cause of the problem.
As we can see, on your site the normal WooCommerce templates are overriden, and the applied custom template does not use the same css class convention than the original WooCommerce template.
Namely it does not contain the wc-tabs class, and it is needed our plugin to work correctly.
The original WC template contains this line:
<ul class="tabs wc-tabs">
Your template contains the following line instead:
<ul class="tabs">
In wp-content/plugins/woocommerce-custom-tabs-pro/js/wct-single-product.js file you can find the following lines:
//On descendants of .wc-tabs class should not been active this function, because it caused infinite loop. if($(e.target).closest('.wc-tabs').length) return;
Please edit this file, and insert the following lines below the above mentioned lines:
if($(e.target).closest('.woocommerce-tabs').length) return; if($(e.target).closest('.wc-tabs-wrapper').length) return;
If this solve the problem, please let us know, and we will insert these lines into the next version. Since then you can use the plugin with the modification that you made.
KeymasterHi,
If the site has a custom tab template that does not contain all of the standard WooCommerce html classes, this problem is occurred.
We modified the plugin not to be sensitive to this.Please update to version 1.0.22, and check if the issue is solved.
(The new version can be downloaded from My Account menu of webshoplogic.com)Thanks,
Peter Rath
WebshopLogic -
This reply was modified 5 years, 8 months ago by
-
AuthorPosts
- You must be logged in to reply to this topic.