Re: Missing random order confirmation (merchant) emails
Thanks, Brennan. I was missing the output variable! Doh! But that format doesn't work for me.
I was able to get the output to appear on the Printable Invoice using this code:
So, that's fine now.
Now, I am trying to get a customer "text-area" custom field type working, but instead of the words I am entering in the field, the system is only recording a "0" in the custom field tab.
Here's my code on OCST:
Here's my code on OSEL:
Here's my code on Printable Invoice template:
Originally posted by Brennan
View Post
I was able to get the output to appear on the Printable Invoice using this code:
Code:
&mvte:customfields:newsletter;
Now, I am trying to get a customer "text-area" custom field type working, but instead of the words I am entering in the field, the system is only recording a "0" in the custom field tab.
Here's my code on OCST:
Code:
<textarea name="customer-comments" wrap="soft" cols="80" rows="5">&mvte:global:customer-comments;</textarea>
Code:
<mvt:item name="customfields" param="Write_Basket('customer-comments', g.customer-comments)" />
Code:
<mvt:item name="customfields" param="Read_Order(l.settings:order:id, 'customer-comments')" /> &mvte:customfields:customer-comments;
Comment