• Resolved mrswed

    (@mrswed)


    1. if there are several groups with tabs on the page, then clicking on the tab will scroll the page to the first tabs group block instead current
    2. I change the tabs position – set it at bottom, after of the content of the tabs with styles (css order: 1), and accordingly, when clicked, it scrolls to the tabs selectors, instead the beginning of the tab group

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter mrswed

    (@mrswed)

    as temporary fix I use this code

    
    jQuery( document ).ready(function($) {
     $('.wp-block-uagb-tabs .uagb-tabs-list').on('click', 
    function(e){ e.preventDefault();
      window.scrollTo( {
          top: $(this).closest(".wp-block-uagb-tabs").offset()["top"] - ($("#wpadminbar").height()||0) - 60, 
          behavior: 'smooth' 
      } );
     });
    });
    
    

    Hello @mrswed ,

    Thank you for sharing the temporary fix.

    I will surely convey your feedback to our concerned developers. We are always keen to listen to our customers and to receive their feedback. This is the best way to improve our products and services and maintain our client’s satisfaction. ???

    I’ll put forward your thought about this to our team and if feasible we will try to improve the scenario in our future updates.

    If you have any further queries, please don’t hesitate to contact us.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Please, fix Tabs block’ is closed to new replies.