Number of Products on Shop Page

Multipurpose WordPress Theme Forum Support
GK User
Mon Jun 06, 2016 5:52 pm
Hi,

Right now our shop page is showing 6 of 7 items, but we would like for it to show ALL products.
But I can't see how and where to tell it to do this.

Can you please help? Thank you!

https://nakedasajaybird.net/shop/
User avatar
Fresh Boarder

Joshua M
Tue Jun 07, 2016 8:52 am
Hi,

Please edit your functions.php file and change the following fragment:
Code: Select all
// Display 6 products per page.
add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 6;' ), 20 );


change it i.e. to:
Code: Select all
// Display 8 products per page.
add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 8;' ), 20 );

to display 8 products at once.
User avatar
Moderator


cron