No content to show
User Activity
06-12-2023
Here is a succinct way to render snippets (which could contain icons) iteratively: {%- liquid
assign upsells = section.blocks | where: 'type', 'upsell'
render 'block-product-upsell' for upsells as upsell
-%}
06-02-2023
You've misunderstood the post - this is theme configuration/shopify cli related issue
You can use the 'where' filter on the desired products collection, just make sure you that you cast the id as an integer rather than a string. In this example the id is coming from a text theme-setting, so I cast it to an integer by applying times: 1...
Hi Kruane,The feature is offered and supported by Shopify - through their cart item properties among other methods. It's up to theme developers whether or not to offer these kinds of features in their themes. If your theme does not support custom fie...