Hello I would like to know how to remove this link from under dynamic checkout. here is a pic
Solved! Go to the solution
This is an accepted solution.
Hey @VegasRome
Please try this
add code assets/theme.scss.liquid bottom of the file
.shopify-payment-button .shopify-payment-button__more-options {
display: none;
}
Hope this will work for you.
Thanks!
This is an accepted solution.
Thanks for your question.
1. Go to Online Store->Theme->Edit code
2. Asset->/theme.scss.liquid->paste below code at the bottom of the file.
.shopify-payment-button .shopify-payment-button__more-options {
display: none;
}
Hi, this works well for me as well, thank you.
What if i need to edit the text there, how can I do that?
So instead of "More payment Option" I want to write something else
Hello, @Superpasha69
Welcome to the Shopify community!
and Thanks for your Good question.
Please share your site URL,
So I will check and provide a solution here.
Hi Ketan,
This is how I managed to do it, just by reading the code and inserting text save - refresh - check - change method lol
find this code in product template liquid and see in red where to type
<div class="product-single__add-to-cart{% if section.settings.add_to_cart_button_size == 'large' %} product-single__add-to-cart--full-width{% endif %}">
<button type="submit" name="add" id="AddToCart--{{ section.id }}" class="btn btn--add-to-cart{% if section.settings.enable_payment_button %} btn--secondary-accent{% endif %}"{% unless current_variant.available %} disabled="disabled"{% endunless %}>
<span class="btn__text">
{% if current_variant.available %}
{{ 'products.product.add_to_cart' | t }}
{% else %}
{{ 'products.product.sold_out' | t }}
{% endif %}
</span>
</button>
{% if section.settings.enable_payment_button %}
{{ form | payment_button }}
{% endif %}
</div>
{% endform %}
insert you text here
</div>
This is how I managed to do it, just by reading the code and inserting text save - refresh - check - change method lol
find this code and see in red where to type
<div class="product-single__add-to-cart{% if section.settings.add_to_cart_button_size == 'large' %} product-single__add-to-cart--full-width{% endif %}">
<button type="submit" name="add" id="AddToCart--{{ section.id }}" class="btn btn--add-to-cart{% if section.settings.enable_payment_button %} btn--secondary-accent{% endif %}"{% unless current_variant.available %} disabled="disabled"{% endunless %}>
<span class="btn__text">
{% if current_variant.available %}
{{ 'products.product.add_to_cart' | t }}
{% else %}
{{ 'products.product.sold_out' | t }}
{% endif %}
</span>
</button>
{% if section.settings.enable_payment_button %}
{{ form | payment_button }}
{% endif %}
</div>
{% endform %}
insert you text here
</div>
Thanks
it's dynamic generate this text see this article
also, give me store or so i will check and let you know
https://help.shopify.com/en/manual/online-store/os/dynamic-checkout
User | Count |
---|---|
447 | |
194 | |
139 | |
60 | |
44 |