Re: Order Delivered Emails with Product Review Link

Order Delivered Emails with Product Review Link

rtagster
Tourist
11 0 1

Hello, I have been able to successfully edit some of my OOB Shopify emails like the Order Delivered emaiil to show a "Leave a product review" link below each line that links direct to the exact product. However what I would like to do is link it direct to the review section that is at the bottom of the product description.  I see that there is a "#shopify-product-reviews" at the end of the URL when linking to the review section. The liquid code I am using already has an append function in there, I tried adding an additional append but it did not work unfortunately. See below:

 

<a href="{{ shop.url | append: line.line_item.product.url }}">Leave a product review</a>

 

This is the other version I tried:

 

<a href="{{ shop.url | append: line.line_item.product.url  | append "#shopify-product-reviews" }}">Leave a product review</a>

 

Here is a link to my website itself:
https://magholder.com/products/magholder-for-glock-pistol#shopify-product-reviews

rtagster_0-1649424151867.png

 

Any suggestions?

 

Replies 2 (2)

satsinghrana
Shopify Partner
331 19 41

Hello @rtagster 

 

Have checked it, It need bit more customisation you can pass the product handle in hidden property field while user is adding product to cart there after use that product handle in Order email to make the actual product link.

 

Eg : https://your-website.com/products/product-handle

 

Let me know if any more info required.

 

Cheers!

 

banned
rtagster
Tourist
11 0 1

@satsinghrana Sorry that doesn't make sense. I was pretty descriptive in how I am doing it now.