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/
// Display 6 products per page.
add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 6;' ), 20 );
// Display 8 products per page.
add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 8;' ), 20 );