How do I modify the Magento Share Wishlist email template?
I don't know where to find the "Share Wishlist" email template. I want to change the part where it says "Demo Store" to the proper store name. I开发者_JS百科 also want to change it to a variable that points to the store name specified in the store configuration so that it automatically changes whenever the store name changes.
- Go to the menu System > Transactional Emails.
- Click "Add New Template".
- Select "Share Wishlist" from the template list.
- Click "Load Template" button.
- Make your changes and give a new template name so that you may recognise it.
- Save.
- Go to the menu System > Configuration.
- Under "Wishlist" select your new template.
I'm using magento 1.41. For me to modify the template of each individual items, I had to modify this file:
$MAGENTO_PATH/app/design/frontend/base/default/template/wishlist/email/items.phtml
If you have to make a change to every template, you can do that by going to $MAGENTO_PATH/app/design/locale/en_US/template/email/sales
all of the templates are in there. You can run a regex replace for whatever you're looking for. (The Demo Store name appears in multiple spots on some templates...)
精彩评论