How can I add a featured collection to my product and cart page?
I know I can use:
{% section ‘product-recommendations’ %}
and show a dynamic version, but instead I want to only show a specific collection (my best sellers) on all my product pages and my cart page.
I already tried using:
{% section ‘featured-collection’ %}
and was able to display a blank version of what I want, but I don’t know how to display a specific collection.
I also tried adding:
{% section ‘featured-collection’ id=‘best-selling-products’ %}
and similar variations, but they all came up with an error.
Anyone have any idea how to make this work?