Hi, we’re running a subscription/rental service on our shopify store using the Envy theme. We have a third-party provider that connects for the rental solution. I
We also offer a buyout option and until this point have not been grouping products together using variants so had a product tag which displayed the RRP/buyout using the below code.
{% comment %} RRP field {% endcomment %}
{% for tag in product.tags %}
{% if tag contains 'retail-price' %}
{{ 'products.product.retail_label' | t }}{{ tag | split: 'retail-price:' | last }}
We now have variants so some products will have different buyout prices. Is there a way to pull the correct buyout price based on the variant?
Thanks!