Hey just wondering if anyone can help with implementing a “Complementary” products block to a product page. We are using Debut 1.0 theme and therefore do not have the “add a block” on the products page. We have added the meta field already but need it to show up on the page itself. Thanks!
- Add the “Complementary” products section: Inside the product-template.liquid file, look for the code that renders the product information section (usually around the {% section ‘product-template’ %} line). Just below that code, add the following Liquid code:
{% if product.metafields.your_namespace.complementary_products %}
{% endif %}
You are the best, thank you!!
I got the header to show up, just not the product grid, any suggestions?