Home Forums WoodMart support forum How to–

How to–

Viewing 20 posts - 1 through 20 (of 20 total)
  • Author
    Posts
  • #302533

    mwick
    Participant

    Hi,

    How do I delete only the tab extra options?

    Also how do I add videos as a gallery in a product?

    Thanks.

    #302550

    mwick
    Participant

    And also, how do I change the image width and height on the left side?

    #302631

    Hello,

    1) The Tabs are woocommerce functionality and our theme doesn’t influence it. To add tabs to the product page you need to read the following link for further help: https://docs.woocommerce.com/document/editing-product-data-tabs/

    2) Sorry but there is no option in Theme Settings available for that.

    3) Please provide me with some relevant screenshot to check it myself and help you out accordingly.

    Best Regards

    #302723

    mwick
    Participant

    Hi,

    Thanks for the reference of woocommerce. I will look into it

    Screenshot: https://gyazo.com/e984670859ad8ca046513672d6a37491
    Product website is in the private content.

    Thanks!

    #302957

    Hello,

    You are Most Welcome.

    You can change the size of the image from Theme Settings >> Single Product >> Images.

    Screenshot for Clarification: https://gyazo.com/5d7a87c79beb92ec95c00944ecd06b78

    Regards.
    Xtemos Studios.

    #303169

    mwick
    Participant

    Hi,

    Is there not an option for width and height manual?

    Also, how do I disable the scroll functions, for example. If you click on a tab on mobile, you will be scrolled to the tab, but sometimes it will bug.

    I also think that the themes scroll bugs YITH Product add ons. When you click on the button (without filling in fields) it will fail validation, and like scroll lock you. I tried this without theme and it works normally.

    If not, what is the CSS to disable this?

    Link is in the private content.

    Thanks already.

    #303273

    Hello,

    Sorry but There is no option in Theme Settings available to add the size of the image as you required.

    Please provide some relevant video explanation of the issue to check it myself and help you out accordingly.

    Regards.
    Xtemos Studios

    #303393

    mwick
    Participant

    Hi,

    I fixed it.

    Last thing what i’m stuck on is when you click a tab, the scroll function glitches a bit, especially on Mobile. How can I disable that scroll? Also, how do I close the first tab always.

    Thanks.

    #303583

    Hello,

    We are glad that one of your issues has been Resolved.

    1) Sorry but there is no option in Theme Settings available to disable the scroll.

    2) Please try adding the following Code in the Document Ready Custom JS in the Custom JS area under Theme Settings >> Custom JS.

    setTimeout(function() {
        var $tabs = jQuery( '.wc-tabs, ul.tabs' ).first();
        $tabs.parent().find('#tab-description').hide();
        $tabs.parent().find( '.tab-title-description' ).removeClass('active');
    }, 1000);

    Best Regards

    #303664

    mwick
    Participant

    Hi,

    Thanks! That fixed it.

    It dind’t fix the scrolllock from where you click on the button “UW PRIJS OPVRAGEN”
    When you click that, the screen freezes and scrolllocks. Was hoping that code resolved that too.

    Thanks!

    #303691

    mwick
    Participant

    Hi,

    The green line is still on active. And sorry I dind’t read the message properly. Is there not a code that disables this scroll?

    Thanks for your help.

    #303845

    Hello,

    Please try adding the following JS on document ready in Theme Settings -> Custom JS

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

    Best Regards

    #303999

    mwick
    Participant

    Hi Aizaz,

    Unfortunately that doesn’t fix the problem. When on mobile, it still drags me to the footer when opening a new tab.

    Thanks.

    #304098

    Hello,

    Please provide a video explanation of how it is behaving to check it myself and help you out accordingly.

    Best Regards

    #304207

    mwick
    Participant

    Hi,

    Certainly, video’s are in the private content section.

    Thanks.

    #304436

    Hello,

    Please, provide your site admin access to the private area.

    Please confirm the permit for us to deactivate the plugins not related to the theme and switch to the parent theme for the while of checking what may take up to 15 minutes. Please make the full backup of your site.

    Best Regards

    #304455

    mwick
    Participant

    Hi,

    Certainly, the information needed is in the private content.

    And yes I confirm, thanks.

    #304478

    Artem Temos
    Keymaster

    Hi,

    1. Try to replace the custom JS code with the following

    jQuery('.wc-tabs-wrapper .wd-accordion-title').on('click', function (e) {
    	e.stopPropagation();
    	e.preventDefault();
    	console.log(jQuery(this));
    	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');
    });

    2. Check how it works with the default WordPress theme. It looks like this scroll comes with some of the installed plugins.

    Kind Regards

    #305093

    mwick
    Participant

    Hi,

    It fixed the issue with the tabs. Unfortunately it did not work with this (private content).

    Thanks.

    #305096

    Artem Temos
    Keymaster

    Hello,

    Could you please test how it works with the default WordPress theme? As we can see, this issue is not related to our theme.

    Kind Regards

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