Broadcast Theme -- button label in cart-bar

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?

oh man.. solved it.. for the future: the definitions are under locales.

Solved by myself :wink:

HIi, sorry I have the same issue as you, could you please tell me how to solve it? Thanks a lot!

Edit the code of your theme > Scroll to the Locales directory in the left sidebar > find your language json file > ctrl+f “Configure” and switch out that text. :+1: