Open up your CreateAccount.aspx, locate the "SkipRegOver13" checkbox, at the bottom of it, add these lines.
Code:
<tr>
<td align="right" valign="top" width="35%">
<asp:Literal ID="Literal5" runat="server" Text="(!createaccount.aspx.26!)"></asp:Literal>
<asp:Literal ID="Literal6" runat="server" Text="(!createaccount.aspx.27!)"></asp:Literal>
<asp:RadioButton ID="OKToEmailYes2" runat="server" GroupName="OKToEMail" />
<asp:Literal ID="Literal7" runat="server" Text="(!createaccount.aspx.28!)"></asp:Literal>
<asp:RadioButton ID="OKToEmailNo2" runat="server" GroupName="OKToEMail" />
</td></tr>
<br />
<asp:Label ID="Label1" runat="server" Text="(!createaccount.aspx.29!)"></asp:Label>
...and go to your CreateAccount.aspx.cs file under CreateAccount() method, change this line:
Code:
/*OkToEmail*/ CommonLogic.IIF(OKToEMailYes.Checked, 1, 0))
to
Code:
/*OkToEmail*/ CommonLogic.IIF(SkipRegistration,CommonLogic.IIF(OKToEmailYes2.Checked,1,0),CommonLogic.IIF(OKToEMailYes.Checked, 1, 0)),
*You should make a backup first before changing anything.