Home Forums WoodMart support forum ratings products

ratings products

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

    arink
    Participant

    hello,

    when i press on the mobile phone on ‘beoordelingen’ i go upstairs in the page. How is this possible? can you check it by yourself? see website-link.

    Attachments:
    You must be logged in to view attached files.
    #261352

    Hello,

    You can set the width of the page in the Theme settings > General layout, in addition, you can set the sections to be full-width or stretch the section.

    Please let me know if you need further help.

    Best Regards

    #261401

    arink
    Participant

    Hello,

    Its not the page width.. I mean check on the productpage (on mobile) the tap ‘beoordelingen’ you can see that you shoot up.. How can i fix that?

    #261555

    Hello,

    Try to add the following code snippet to the Custom JS area on the 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');
    });

    When you click the next tab, the previous one would remain open with this code. If you want the code where all the tabs are open, let us know, we shall provide, however, we do not guarantee it would be stable.

    Kind Regards

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