Hi guys,
Which lines of code shall I modify in the Email body (HTML) of “https://myshopname.myshopify.com/admin/email_templates/order_confirmation/edit”?
I want the listing customized products appear with its “engraving text” in both sides of order confirmation email.
I refered to this post for adding “engraving text” in some customized products by editing “custom liquid” of the theme of Taste.
I modified their code as below shows,
<label for="message" class="form__label">
<h2 style="color:red">將訂做的文字內容:</h2>
</label>
<div class="field">
<textarea id="message"
class="text-area field__input"
placeholder="填寫文字內容"
name="properties[訂做的內容]"
form="product-form-{{section.id}}">
</textarea>
</div>
Output is working, our customer can leave “engraving text” for their customized products, and it is appearing the whole process of purchase as well.
But, after placing an order, “engraving text” has gone in both sides of order confirmation emails. I only can find it in the orders of admin system.




