Hi there,
I would like to adjust the amount of products showing in my featured collection on the home page,
it’s currently showing all the products in that collection but I would like to show just 1 row if possible.
here is the website; https://minimalculture.com
appreciate any help.
Hello @Marloes_MC ,
Open the code editor from Actions > Edit code and open the featured-products.liquid file
Locate the below code in the file
{% for product in collections[section.settings.home_featured_products].products %}
and replace it with
{% for product in collections[section.settings.home_featured_products].products limit:3 %}
That will limit the number of products retrieved and it will only show 3 products with 1 row.
Before you do any changes, I would recommend you to reach to Shopify Support as this request might be supported by Theme Support because you are using Brooklyn Shopify theme.
Best regards,
Hi @Sam_Abd , Thank you so much! worked like a charm.
Could I possibly ask you another question about this, can I also enlarge the 3 images?
Thank you so much for your quick response, really appreciate it!
Hey again @Marloes_MC
You could do that by increasing the section width but that is not recommended as it might not align fully with your overall theme. However, below is the steps to accomplish the change.
In the same file featured-products.liquid, locate the below code and usually it is on the second line
replace it with
and then from your theme editor ( Online Store > Customize), go to Theme Settings > Colors > and remove the color for product background by deleting the hex code(#F6F6F6) and save the changes. This step is to set the background color of the product card to transparent.
Best regards,
1 Like
Hi @Sam_Abd ,
You might actually be right about the alignment but thank you very much for taking the time still.
Thanks for the colour tip, has solved the next issue on my list 
1 Like