Your customers can make a payment for unpaid or partially paid orders in two different ways.
You can send an email via Simple Invoice with a payment link or/and you can activate the My Account Page Payment Link feature.
Sending Payment Link via Simple Invoice
You can send a payment link to your customers.
As a default, when you send a draft order with Simple Invoice, the payment link is sent with the email content. You can find added code for draft orders below.
{% if order.is_draft %}If you would like to make a payment please click here.{% endif %}
The Draft payment link won’t be visible in your regular invoice emails sent for your Shopify orders placed by your customers. If you send a draft order to your customer, this sentence will be visible in the email sent to your customers alongside the other content. If your customers click on the link, they will be redirected to your Shopify store to make a payment.
If you wish to get payments for the orders in which the financial status of the order is pending, add the code below.
{% if order.financial_status == 'pending' %}You can complete payment here : {{ order.checkout_url }}{% endif %}
Please follow the simple steps below.
Step 1: Open Simple Invoice from your Shopify store’s “Apps” section.
Step 2: Click on “Settings” on the Simple Invoice dashboard.
Step 3: Scroll down to the Sending Options section, click on the Mail Content field, and add the code below.
{% if order.financial_status == 'pending' %}You can complete payment here : {{ order.checkout_url }}{% endif %}
This payment link won’t be visible in your regular invoice emails sent for your Shopify orders placed by your customers. If you send an order with the pending financial status to your customer, this sentence will be visible in the email sent to your customers alongside the other content with the payment link. If your customers click on the link, they will be redirected to your Shopify store to make a payment.
Step 4: Click on the Save button.
My Account Page Payment Link
Please follow the simple steps below in order to activate the “My Account Page Payment Link” feature.
Step 1: Open Simple Invoice from your Shopify store’s “Apps” section.
Step 2: Click on “Settings” on the Simple Invoice dashboard.
Step 3: Scroll down to the My Account Page Payment Link section, and click on the Activate button.
Step 4: If you wish to add additional information such as specify the default value/name of the download button, click on the Message section, add your message to the newly opened window, and click on the Send button.
Step 5: Accept our collaborator access request from the Users and permissions section under the Settings on your Shopify store admin.