Home Forums WoodMart support forum Stucky sidebar column on shop archive Reply To: Stucky sidebar column on shop archive

#551413

Hello,

Please try to use the following custom JS code. This code needs to be placed inside Custom JS-> On document ready field in theme settings. This issue will also be fixed in the next theme update:

(function($) {
	$(document).on('pjax:success', function() {
		woodmartThemeModule.stickyColumn();
	});
})(jQuery);

Best Regards.