Head, Heart and Hand: Elbert Hubbard and the Roycrofters – Marie Via / Marjorie B. Searle – 1994 University of Rochester Press – 1st Edition Hardcover Book
/**
* Change number of products that are displayed per page (shop page)
*/
add_filter( 'loop_shop_per_page', 'new_loop_shop_per_page', 20 );
function new_loop_shop_per_page( $cols ) {
$cols = 24;
return $cols;
}