News:

Looking for documentation? Take a look on our wiki

Main Menu

Removing store description in order confirmation email

Started by broc93, May 25, 2013, 14:27:15 PM

Previous topic - Next topic

broc93

Hello!
I'd like to remove the store description from the order confirmation/status update email sent to the customer. It makes the email really long and not-too-nice to see.
Thank you in advance.
Luca
Herbalife products
http://dietabenesserehl.it

lindapowers

#1
What i did is change the shop description by the shop url:

components\com_virtuemart\views\invoice\tmpl\mail_html_footer.php

Around line 38 (this may change depending on your vm version)

Change

echo $this->vendor->vendor_name .'<br />'.$this->vendor->vendor_phone .' '.$this->vendor->vendor_store_name .'<br /> '.$this->vendor->vendor_store_desc.'<br />'.$this->vendor->vendor_legal_info;

to

echo $this->vendor->vendor_name .'<br />'.$this->vendor->vendor_phone .' '.$this->vendor->vendor_store_name .'<br />'.$this->vendor->vendor_url .'<br />';

Or at the same line just change vendor_store_desc to vendor_url

Regards