Abandon Cart Link Not Working
-
I do not need help with this topic. I am leaving this here for others to find when they have the same issue.
By default the software provides email templates to help webmasters get started…. The code for the 5min template looks like this:Greetings {{customer.firstname}}! We noticed that you didn't quite follow through with the ordering process and wanted you to know that your cart has been saved in case you change your mind. <strong>So, just in case here's a link to continue where you left off</strong>: <a href="'{{cart.checkout_url}}'" target="'_blank'" rel="'noopener'"> Continue Your Purchase Here </a> Kindly, Sales Manager {{admin.company}} {{cart.unsubscribe}}
I removed the ; from the code to make the coded apostrophe more visible for the people that don’t know or missed the addition like I did.
Not sure why they left those html apostrophes in the templates but they need to be removed before the link will work, it should look like this:
Greetings {{customer.firstname}}! We noticed that you didn't quite follow through with the ordering process and wanted you to know that your cart has been saved in case you change your mind. So, just in case here's a link to continue where you left off: <a href="{{cart.checkout_url}}" target="_blank" rel="noopener"> Continue Your Purchase Here </a> Kindly, Sales Manager {{admin.company}} {{cart.unsubscribe}}
Hope this helps and saves people some time looking for a solution.
Also, here is a handy link of available shortcodes you can use in your templates.
https://cartflows.com/docs/shortcode-reference-for-email-fields/
- The topic ‘Abandon Cart Link Not Working’ is closed to new replies.