@jsmbizhack can you please provide a link to where the problem is?
@jsmbizhack try with div.vc_tta-tabs-container
Hi, it worked wonders! But one issue, that sometimes the page title gets removed and all products get pulled up to the top overlapping the sticky tabs. See here: https://bit.ly/3gm0QDF
@jsmbizhack if you disable our plugin and click on that link, does it show the same behavior? It’s hard to believe that this is being trigger by our plugin… Can You just check that for me?
Check it now and refresh. i removed the plugin
Maybe its something to do with padding which I made as 60px? No clue
@jsmbizhack as you can see the problem is still there… There is some issue regarding anchors… something you have there is breaking the anchor navigation and removing the header.
Maybe some other plugin is doing it or maybe an issue with the theme itself… Try to disable plugin by plugin and see when the issue disappear…
Checking the loading of webpage I see the issue comes when ajaxget_refreshed_fragments, from woo, triggers and brake all your website…
I see here that this is a know issue… Maybe the element where it has to put is not there already.
Try to dequeue the wc-cart-fragments script and see if the issue goes away. For doing that You just need to put this piece of code inside the function.php theme file:
add_action( 'wp_print_scripts', 'de_script', 100 );
function de_script() {
wp_dequeue_script( 'wc-cart-fragments' );
return true;
}
If that solves You have to check with the guys from the theme, or woo support, how to handle that script properly.