Home › Forums › WoodMart support forum › How to–
How to–
- This topic has 19 replies, 4 voices, and was last updated 3 years, 8 months ago by
Artem Temos.
-
AuthorPosts
-
June 25, 2021 at 2:03 pm #302533
mwickParticipantHi,
How do I delete only the tab extra options?
Also how do I add videos as a gallery in a product?
Thanks.
June 25, 2021 at 3:47 pm #302550
mwickParticipantAnd also, how do I change the image width and height on the left side?
June 26, 2021 at 8:10 am #302631
Aizaz Imtiaz AwanKeymasterHello,
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
June 26, 2021 at 2:06 pm #302723
mwickParticipantHi,
Thanks for the reference of woocommerce. I will look into it
Screenshot: https://gyazo.com/e984670859ad8ca046513672d6a37491
Product website is in the private content.Thanks!
June 28, 2021 at 6:05 am #302957
Aizaz Imtiaz AwanKeymasterHello,
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.June 28, 2021 at 4:35 pm #303169
mwickParticipantHi,
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.
June 29, 2021 at 8:50 am #303273
Aizaz Imtiaz AwanKeymasterHello,
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 StudiosJune 29, 2021 at 3:09 pm #303393
mwickParticipantHi,
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.
June 30, 2021 at 10:27 am #303583
Aizaz Imtiaz AwanKeymasterHello,
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
June 30, 2021 at 1:58 pm #303664
mwickParticipantHi,
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!
June 30, 2021 at 2:54 pm #303691
mwickParticipantHi,
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.
July 1, 2021 at 8:03 am #303845
Aizaz Imtiaz AwanKeymasterHello,
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
July 1, 2021 at 2:41 pm #303999
mwickParticipantHi Aizaz,
Unfortunately that doesn’t fix the problem. When on mobile, it still drags me to the footer when opening a new tab.
Thanks.
July 2, 2021 at 7:18 am #304098
Aizaz Imtiaz AwanKeymasterHello,
Please provide a video explanation of how it is behaving to check it myself and help you out accordingly.
Best Regards
July 2, 2021 at 6:02 pm #304207
mwickParticipantHi,
Certainly, video’s are in the private content section.
Thanks.
July 4, 2021 at 9:03 pm #304436
Elise NoromitMemberHello,
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
July 5, 2021 at 12:31 am #304455
mwickParticipantHi,
Certainly, the information needed is in the private content.
And yes I confirm, thanks.
July 5, 2021 at 6:15 am #304478
Artem TemosKeymasterHi,
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
July 7, 2021 at 2:40 pm #305093
mwickParticipantHi,
It fixed the issue with the tabs. Unfortunately it did not work with this (private content).
Thanks.
July 7, 2021 at 2:50 pm #305096
Artem TemosKeymasterHello,
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
-
AuthorPosts
- You must be logged in to create new topics. Login / Register