Woocommerce Products Per Page

Interestingly Woocommerce does not seem to have a default setting for ‘products per page’. Unsurprisingly, there’s a simple workaround.

Add to your functions.php

Replace “28” with whatever number you want.

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

Jquery XML Shopping Cart

We’ve built all kinds of shopping carts – many from the ground up. Experienced with all the third party vendors – zencart, opencart, xcart, etc…

Read More »