Each product in the shop is on an extra page
-
Unfortunately, all my products (currently 3) are on three different pages on my shop page. In the WooCommerce Product Catalog Settings, the products per rows are on 4. I can’t find a products per page setting.
I’ve tried the following code snippet at the end of my?functions.php:
// Change the Number of WooCommerce Products Displayed Per Page add_filter( 'loop_shop_per_page', 'lw_loop_shop_per_page', 30 ); function lw_loop_shop_per_page( $products ) { $products = 12; return $products; }
Nothing happend. I don’t know what else to do?
Can someone help please?
Thanks in advance!
Seli
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Each product in the shop is on an extra page’ is closed to new replies.