I am using Dawn version 3.0.
I would like to move the Shop Pay installments message from above the add to cart and buy now buttons to below it.
I am using Dawn version 3.0.
I would like to move the Shop Pay installments message from above the add to cart and buy now buttons to below it.
Hi @mystore0232 ,
This can be done by moving the code of the installment plan. Go to Admin > Themes > Actions > Edit code. Open the main-product.liquid under the Asset folder.
Find the code below
{%- assign product_form_installment_id = 'product-form-installment-' | append: section.id -%}
{%- form 'product', product, id: product_form_installment_id, class: 'installment caption-large' -%}
{{ form | payment_terms }}
{%- endform -%}
Highlight it and hit CTRL + X to cut. Then find the code below
{%- when 'buy_buttons' -%}
Then paste the installment code after the code above.
Code should look like below
{%- when 'buy_buttons' -%}
{%- assign product_form_installment_id = 'product-form-installment-' | append: section.id -%}
{%- form 'product', product, id: product_form_installment_id, class: 'installment caption-large' -%}
{{ form | payment_terms }}
{%- endform -%}