Posted - 03/09/2021 : 11:50:07
Hi Claudia, I don't think there is an official way to do that, but I do have an idea.. In your Receiptheaders email even though the order number is not an option, we can add it another way. In the message, where you want the order id to show, just place this <div id="ordnum"></div> Then open your thanks.asp page in your favorite html editor and somewhere after the include line <!--#include file="vsadmin/inc/incthanks.asp"--> add the following javascript <script> document.getElementById("ordnum").innerHTML = "Your order number is <%= ordid %>"; </script> That should work. I haven't tested, so let me know if you have trouble and I'll investigate. Of course you can edit the text in green there to something different if you like. You can also style that with css #ordnum { some:style; } Thanks, David
Edited by - dbdave on 03/09/2021 11:50:58
|