Version 2.8.3
This update was launched on the 8th of June 2021.
In this update we've fixed an issue with featured product classic variants.
To apply the fix yourself (only if you previously had at least 2.8.0!), open /sections/featured-product.liquid and search for these lines:
{% for option in product.options_with_values %} <div class="product-variant selector-wrapper hidden"> <label for="product-{{ option.name | downcase | strip }}">{{ option.name }}</label> <select class="product-variants" id="product-{{ option.name | downcase | strip }}"> {% for value in option.values %} <option value="{{ value | escape }}" {% if option.selected_value == value %}selected{% endif %}>{{ value | escape }}</option> {% endfor %} </select> </div> {% endfor %}
Delete them and replace with:
{%- render 'product-variants', product: product, style: section.settings.variants_style -%}