I had to go into vsadmin/inc/incorders.asp today and add this <%=yyEStat%> at line #3532
because on the ORDERS ADMIN page "/vsadmin/adminorders.asp" the text "Email Status Change" is missing for the checkbox.
The current code shows this:
[code]<input type="checkbox" name="emailstat" value="1" title="<%=yyEStat%>" style="vertical-align:middle" <% if getpost("emailstat")="1" OR alwaysemailstatus=TRUE then print "checked=""checked"" "%>/> [/code] I edited it to this: [code]<%=yyEStat%><input type="checkbox" name="emailstat" value="1" title="<%=yyEStat%>" style="vertical-align:middle" <% if getpost("emailstat")="1" OR alwaysemailstatus=TRUE then print "checked=""checked"" "%>/> [/code]
Hi, it's not really missing so much as it's not intended to be there. There is the title tag there if a user needs to know what the function of the tick box is.
<input type="checkbox" name="emailstat" value="1" title="<%=yyEStat%>" style="vertical-align:middle" <% if getpost("emailstat")="1" OR alwaysemailstatus=TRUE then print "checked=""checked"" "%>/>
Of course there is nothing wrong with you hacking the code and putting it in there, but keep in mind that it will get overwritten by future updates.
Hi Robert, I've had my cart for over 10 years and I don't remember that text being there. It must have been quite a few versions back.
Just an FYI, It's possible to set that to "on" be default, and then indicate what status types get an email. That may be helpful so your staff doesn't need to remember to tick that.