Link to order from order confirmation email

血红的双手。 提交于 2019-12-08 05:59:52

问题


I`m trying to add link to order review in order confirmation email:

<a href="{{store url="sales/order/view/order_id/}}"{{var order.id}}" style="color:#1E7EC8;">

But when customer get the email it links just to http://mysite/sales/order/view/


回答1:


Move your quotes.

<a href="{{store url="sales/order/view/order_id/"}}{{var order.id}}" style="color:#1E7EC8;">



回答2:


Hi,
<a href="{{store url="sales/order/view/order_id/"}}{{var order.id}}" style="color:#1E7EC8;">

This is okay but it still not shows full link. It shows only sales/order/view/.

To show **order_id/**, you have to create Custom Variable.
Go to **System >> Custom Variables**.
Check Image below.
**http://imagizer.imageshack.com/img922/1470/tI8BGv.png**

Now create custom variable shown in image with any name.
Now revise the code and change the line.

<a href="{{store url="sales/order/view/"}}{{customVar code=static_url}}{{var order.id}}" style="color:#1E7EC8;">

It's working fine for me.
Thanks & Regards.


来源:https://stackoverflow.com/questions/15099470/link-to-order-from-order-confirmation-email

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!