Home Forums WoodMart support forum Category page with one column Reply To: Category page with one column

#262683

Hello,

Please find this file: woodmart\inc\integrations\elementor\elements\products\products.php

Then find this line:

if ( ! $products->have_posts() ) {
   return;
}

Replace it with this line:

if ( ! $products->have_posts() ) {
	wc_reset_loop();
	wp_reset_postdata();
	woodmart_reset_loop();
	return;
}

We shall fix this in the nearest update.

Best Regards