Is there a way to set the new customer registration to default to 'Opted In' for receiving communications via email?
Any help would be appreciated.
Is there a way to set the new customer registration to default to 'Opted In' for receiving communications via email?
Any help would be appreciated.
On the InitializePageContent method of the createaccount.aspx.cs, comment out these lines:
add this:Code:OKToEMailYes.Checked = (ThisCustomer.EMail.Length != 0); OKToEMailNo.Checked = !OKToEMailYes.Checked;
Code:OKToEMailYes.Checked = true;