A client’s sales site is not showing all products available. This is apparently a WooCommerce failing. She has been told to put the following code into functions.php
// Display 24 products per page. Goes in functions.php
add_filter( ‘loop_shop_per_page’, create_function( ‘$cols’, ‘return 24;’ ), 20 );
I have never personally had to adjust much with Weaver until this client’s site, so I’m not familiar with where this change needs to be made. I welcome some guidance.
Where do I make such a change?
Is that exactly the code I need to insert?
Thank you.