VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: skhn123 on April 21, 2014, 16:38:05 PM

Title: Hide/Display order email content based on order status???
Post by: skhn123 on April 21, 2014, 16:38:05 PM
Hello everyone!

i am using VM Latest and Joomla 2.5.17 and my question is, is it possible to hide or display order email content based on order status. eg: if order status is shipped then i want to hide the item details, some part of order details etc.

Any help/suggestion.

Regards
Title: Re: Hide/Display order email content based on order status???
Post by: byPV on April 21, 2014, 18:25:54 PM
Hi,

you can create your own PHP conditions with variable $this->orderDetails['details']['BT']->order_status . This variable contains values P, U, C, etc...

In example ( /templates/{YOUR_TEMPLATE}/html/com_virtuemart/invoice/mail_html.php ):


<?php if ($this->orderDetails['details']['BT']->order_status == 'P') { // Pending ?>
  <p>Text for pending orders....</p>
<?php ?>


Regards,
Pavel
Title: Re: Hide/Display order email content based on order status???
Post by: skhn123 on April 22, 2014, 08:29:38 AM
Thank you so much for your kind reply i will test it today and will post the result.

Regards
Sadique Khan