Before you ask please READ THIS

Need to display more than 12 products in a product category's catalog

edited October 2014 in Fame Posts: 15
I need to display more than 12 products in a product category's catalog. It only shows 3 rows and 4 columns. I try putting this code in my functions.php but it doesn't seem to work.

add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 24;' ), 20 );

Comments

  • AirAir
    Posts: 10,970
    It is probably cause we already use this filter :-) However if you will put you in higher priority then it should work. So same code but different number:
    add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 24;' ), 30 ); 
    With regards.
  • Thanks!
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!