We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

Change Order ID generating in email confirmation

Solved

Change Order ID generating in email confirmation

amierafa
Excursionist
17 0 5

Hi, I changed the Order ID sequence from the regular #1234 to my own order ID including additional letters & numbers before and after the Shopify order ID that is usually 1011

 

Can you please help me code in this new sequence into my automated Shopify order confirmation:

 

Screenshot 2024-08-13 at 11.18.34 AM.png

Screenshot 2024-08-13 at 11.18.00 AM.png

Screenshot 2024-08-13 at 11.22.54 AM.png

 

Accepted Solution (1)

Priyanka_
Shopify Partner
85 15 20

This is an accepted solution.

Hi @amierafa 
Replace the below line:

 

<span style="font-size: 14px;">Your order number is <strong>{{ order_number }}</strong>.</span>

 

with:

 

<span style="font-size: 14px;">Your order number is <strong>AR26{{ order_number }}36</strong>.</span>

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Thanks!

Was I helpful? 

Buy me a coffee 



If I managed to help you then, don't forget to Like it and Mark it as Solution!

View solution in original post

Replies 2 (2)

Priyanka_
Shopify Partner
85 15 20

This is an accepted solution.

Hi @amierafa 
Replace the below line:

 

<span style="font-size: 14px;">Your order number is <strong>{{ order_number }}</strong>.</span>

 

with:

 

<span style="font-size: 14px;">Your order number is <strong>AR26{{ order_number }}36</strong>.</span>

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Thanks!

Was I helpful? 

Buy me a coffee 



If I managed to help you then, don't forget to Like it and Mark it as Solution!

amierafa
Excursionist
17 0 5

THANK YOU SO MUCH!!!