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
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