Forum
Filter by brand
Hi, I'm tring to filter products by brand and am having no luck with it at the moment. I've arranged a brands landing page which lists all of the brands but when clicked the client wants to show all of the products that are by that brand. Below is my brand.php code
<?php
perch_shop_products([
'filter' => 'shop_brand',
'match' => 'eq',
'value' => perch_get('b'),
]);
;?>
Hi Jade
Try this. Works for me.
NB I've taken out the template and variant options for simplicity.
That works great, thanks Jonathan!