Hey
When i disable the dynamic checkout button, the “Buy with paypal” Button disappears but the default “buy now” button does not appear, and i’m left with only the “add to cart” button. I’m trying to find a way to replace the yellow “buy with paypal” button with the normal “buy now” button, without disabling paypal as a payment method.
1 Like
Buy Now button is a Shopify dynamic checkout button.
Can i somehow replace it with a simple “buy now” button that directs to the checkout page?
Please enable the dynamic checkout button, go to Online store > Themes > Edit code > open buy-button.liquid file, find this line of code
{%- if show_dynamic_checkout -%}
Paste this code below before the above line
{%- if current_variant.available -%}
{%- else -%}
{%- endif -%}
Hey, i really appreciate the help but it did not work for me, do you have any other idea?