Home Forums WoodMart support forum How to disable auto scrolling when clicked on accordion?

How to disable auto scrolling when clicked on accordion?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #424096

    fineorganics
    Participant

    How to disable auto scrolling when clicked on accordion?

    #424130

    Hello,

    Could you kindly advise which accordion you mean?

    Do you mean the product page?

    Best Regards

    #424533

    fineorganics
    Participant

    When I click on any accordion tab my scroll is changing, how to disable it?

    #424879

    Hello,

    Please add this code to the Theme Settings > Custom JS > On document ready:

    (function($) {
    	$(document).on('click', '.wd-accordion > .wd-accordion-item > .wd-accordion-title', function(){
    		setTimeout(function() {
    							$('html, body').stop();
    					}, 310);
    	})
    })(jQuery);

    Best Regards

Viewing 4 posts - 1 through 4 (of 4 total)