product page changes to the top
-
Dear XTEMOS-Team,
i have to liitle mistakes in my shopsystem but I can´t find the solution.
1. When I click on the accordeon of the product page, sometimes the page scrolls to the top again. Sometimes it happens after a few clicks, sometimes it happens after the first click.
Do you know a solution to fix this?
2. My category-pictures are not shown on the main page. In the editor view you can see the pictures, but in the normal front end it is not there.
Thank you so much for your support!
Best regards
Sebastian
Hello,
Please provide your site admin access to the private area.
Please provide the page URL with category-pictures. I will check the accordion view with the dev team.
Best Regards
Hello,
As for the categories, please deactivate all the plugins not related to the theme and switch the parent theme, check the issue, If the problem has gone, activate the plugins one by one, checking the issue to detect which one causes the problem.
As for accordion:
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');
});
Best Regards