Forum
Perch Paypal shop sort order
How can I get the category pages in a Perch Paypal shop to list by price order by default?
They is the current code I am using
<?php
perch_shop_products_by_category(perch_get('cat'), 24);
?>
How can I get the category pages in a Perch Paypal shop to list by price order by default?
They is the current code I am using
<?php
perch_shop_products_by_category(perch_get('cat'), 24);
?>
Use
perch_shop_custom()
instead - that's allperch_shop_products_by_category()
is doing if you look under the hood.