Hey Guys!
I can not find where to change the number of products per page (shop) in Sydney Pro. I am developing a shop with not that many products and i need this feature. Can you help me out? Thanks.
Br
Henrik
Hey Guys!
I can not find where to change the number of products per page (shop) in Sydney Pro. I am developing a shop with not that many products and i need this feature. Can you help me out? Thanks.
Br
Henrik
Hi Henrik,
Thank you for reaching out to us. I am happy to help with your queries.
To show all products at once in shop page, you can add the below snippet to your site with a childd theme. Or use Code Snippets plugin in case you aren’t running a child theme.
add_filter( 'loop_shop_per_page', 'sydney_child_loop_shop_per_page', 20 );
function sydney_child_loop_shop_per_page( $cols ) {
$cols = -1;
return $cols;
}
I hope this reply helps.
Please let us know in a new topic if you have any further questions, or if we can provide you with any other assistance.
Regards,
Kharis
aThemes Support
Thanks for quick response and help! Perfect
You’re welcome!
Please let us know in a new topic if you have any further questions, or if we can provide you with any other assistance.
Regards,
Kharis
aThemes Support