VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: broc93 on May 25, 2013, 14:27:15 PM

Title: Removing store description in order confirmation email
Post by: broc93 on May 25, 2013, 14:27:15 PM
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
Title: Re: Removing store description in order confirmation email
Post by: lindapowers on May 25, 2013, 15:12:53 PM
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