VirtueMart Forum

VirtueMart 2 + 3 + 4 => Plugins: Payment, Shipment and others => Topic started by: enricocerica on June 24, 2012, 08:59:23 AM

Title: COM_VIRTUEMART_MAIL_SUBJ_SHOPPER_S on order mail
Post by: enricocerica on June 24, 2012, 08:59:23 AM
Hi,

I'm using virtual products and after the payment process the product is immediately available and the client immediately received a mail with the download links, so no Pending nor confirmed status for the order. Strangely in this situation the mail the client receives has COM_VIRTUEMART_MAIL_SUBJ_SHOPPER_S as title. I check in the languages files and this message is correctly defined but it seems that it is not resolved during the preparation of the mail. I don't have the same problem if I first have a pending status and manually set it to shipped.

What could be wrong ?
Thanks
Title: Re: COM_VIRTUEMART_MAIL_SUBJ_SHOPPER_S on order mail
Post by: alatak on June 24, 2012, 10:42:08 AM
Hello,

Some keys were missing. I have fixed it.
Title: Re: COM_VIRTUEMART_MAIL_SUBJ_SHOPPER_S on order mail
Post by: enricocerica on June 24, 2012, 12:05:02 PM
Great,
Is there already something I could download to solve that ?
Thanks
Title: Re: COM_VIRTUEMART_MAIL_SUBJ_SHOPPER_S on order mail
Post by: alatak on June 24, 2012, 12:30:25 PM
Hello,

we are going to do a release on tuseday.
If you cannot wait,
add those keys in the override language file:
COM_VIRTUEMART_MAIL_SUBJ_SHOPPER_C="[%3$s], Confirmed order at %1$s, total %2$s"
COM_VIRTUEMART_MAIL_SUBJ_SHOPPER_P="[%3$s], Order is pending at %1$s, total %2$s"
COM_VIRTUEMART_MAIL_SUBJ_SHOPPER_R="[%3$s], Refunded order by %1$s, total %2$s"
COM_VIRTUEMART_MAIL_SUBJ_SHOPPER_S="[%3$s], Shipped order from %1$s, total %2$s"
COM_VIRTUEMART_MAIL_SUBJ_SHOPPER_U="[%3$s], Order confirmed by %1$s, total %2$s"
COM_VIRTUEMART_MAIL_SUBJ_SHOPPER_X="[%3$s], Cancelled order by %1$s, total %2$s"

COM_VIRTUEMART_MAIL_SUBJ_VENDOR_C="[%3$s], Confirmed order by %1$s, total %2$s"
COM_VIRTUEMART_MAIL_SUBJ_VENDOR_P="[%3$s], Pending order by %1$s, total %2$s"
COM_VIRTUEMART_MAIL_SUBJ_VENDOR_R="[%3$s], refunded order for %1$s, total %2$s"
COM_VIRTUEMART_MAIL_SUBJ_VENDOR_S="[%3$s], Shipped order for %1$s, total %2$s"
COM_VIRTUEMART_MAIL_SUBJ_VENDOR_X="[%3$s], cancelled order for %1$s, total %2$s"
COM_VIRTUEMART_MAIL_SUBJ_VENDOR_U="[%3$s], Order confirmed by %1$s, total %2$s"


in the frontend.

Some of them were missing in the frontend.
They were all included in the Back end.
Title: Re: COM_VIRTUEMART_MAIL_SUBJ_SHOPPER_S on order mail
Post by: enricocerica on June 24, 2012, 12:57:55 PM
Ok, works great  ;)
Thanks