Hi,
I have a client who sells Poke bowls and uses Doordash as the delievery vendor. I have modified the buy button by commenting this out -
{% comment %} This is the check out button
<button
id=“ProductSubmitButton-{{ section_id }}”
type=“submit”
name=“add”
class="product-form__submit button button–full-width
{% if show_dynamic_checkout %}button--secondary{% else %}button--primary{% endif %}"
{% endcomment %}
and adding this
<a
href=“https://order.online/business/moushi-362414”
class=“product-form__submit button button–full-width button–primary”
Unfortunately it does not allow the french version of my site to say the correct words Commander maintenant when the French Lang is selected.
I tried adding
{% if localization.language == ‘fr’ %}
Commander maintenant
{% else %}
Order Now
{% endif %}
But it did not work
What am I missing?