Hello, I’m trying to locate in the button with the text “Configure” which is shown after scrolling down on a product page. I want to change the lable “Configure” to something more fitting my content. In the code inspector on the product page it’s this part:
Configure
I can also see in the inspector that it belongs to /partials/cart-bar.liquid and the button definition is in:
<button type=“button” class=“btn product__submit__add{% unless button_add %} product__submit__add–default product__submit__add–chevron{% endunless %}”{% if button_add %} data-add-to-cart-bar{% else %} data-cart-bar-scroll{% endif %}>
{% if button_add %}
{%- if current_variant.available and product.tags contains ‘_preorder’ -%}
{{ ‘products.product.pre_order’ | t }}
{%- elsif current_variant.available -%}
{{ ‘products.product.add_to_cart’ | t }}
{%- else -%}
{{ ‘products.product.sold_out’ | t }}
{%- endif -%}
{% else %}
{{ ‘products.product.configure’ | t }}
{% endif %}
But I don’t know where to find and change the definition behind the {{ ‘products.product.configure’ | t }}
Can anyone help?