Home Forums WoodMart support forum Jumping product single page tabs

Jumping product single page tabs

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

    tcsg.toth
    Participant

    Hello,
    Is it possible somehow to not to use product single page tabs in mobile and Desktop like tabs just simple text? Because in mobile and desktop its jumping and not too user-friendly.
    Please check it from desktop and mobile.
    Video for clarification: https://we.tl/t-2AbrBRzkAF

    #236090

    Artem Temos
    Keymaster

    Hello,

    Try to add the following code snippet to the Custom JS area on document ready in Theme Settings to fix this issue.

    jQuery('.wc-tabs-wrapper .woodmart-accordion-title').click(function (e) {
    	e.stopPropagation();
    	e.preventDefault();
    	var $this = jQuery(this),
    		$panel = $this.siblings('.woocommerce-Tabs-panel');
    	if ($this.hasClass('active')) {
    		$this.removeClass('active');
    		$panel.stop().slideUp(300);
    	} else {
    		$this.addClass('active');
    		$panel.stop().slideDown(300);
    	}
    	jQuery(window).resize();
    	jQuery(document).trigger('wood-images-loaded');
    });

    Kind Regards

    #236284

    tcsg.toth
    Participant

    thanks,worked

    #236389

    Artem Temos
    Keymaster

    Great, you are welcome!

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