We can't upgrade to 3.6 right now due to time and dependencies.
Is there anyway that this can done with 3.5 or something that at least takes them to the products?
Hi,
We merged the changes in 3.5 version. You need to download and update the plugin to the latest version following this article:
http://www.nop-templates.com/how-to-update-a-nopcommerce-pluginAfter updating the plugin you need to go to the
\Plugins\SevenSpikes.Nop.Plugins.CustomerReminders\Views\TokenTemplates\_ProductsWithPictures.cshtml view and change this:
string productUrl = storeUrl + productSeName;
to be:
string productUrl = storeUrl + "productreviews/" + product.Id;
The new token that you should use is in the message templates is:
%Order.ProductsWithPictures%Note: Keep in mind that this will affect the AbandonedShoppingCart.ProductWithPictures token. If you want to make the change only for the CompletedOrder.ProductWithPictures you will need to copy the whole content from the
_ProductsWithPictures.cshtml, paste it into
Order.ProductsWithPictures.cshtml view and do the url change there.
Hope this helps!