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 );

HotOpponents Hack

We have seen this one a few times coming from WordPress but we have also seen it in Google Analytics code or simply in a

Read More »