• Resolved jsmbizhack

    (@jsmbizhack)


    I have tabs of all product categories with wpbakery. Could not figure out how to make all tabs as a sticky header on scroll. When I created the element ID for the tabs and added it in plugin settings it made the product loop sticky instead of the tabs. Will appreciate your help!

    • This topic was modified 4 years, 6 months ago by jsmbizhack.
Viewing 8 replies - 1 through 8 (of 8 total)
  • @jsmbizhack can you please provide a link to where the problem is?

    Thread Starter jsmbizhack

    (@jsmbizhack)

    Yes. See here: https://bit.ly/2ZA8VOW

    @jsmbizhack try with div.vc_tta-tabs-container

    Thread Starter jsmbizhack

    (@jsmbizhack)

    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?

    Thread Starter jsmbizhack

    (@jsmbizhack)

    Check it now and refresh. i removed the plugin

    Thread Starter jsmbizhack

    (@jsmbizhack)

    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.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘wpbakekry tabs’ is closed to new replies.