Jump to content

Uncheckable check box for email list in Safari browser


Guest kircaldy

Recommended Posts

Guest kircaldy

Hi all.

This may need to go in the skinning forum since it refers to a modified file. Apologies if so.

I'm working with my reg.tpl file right now, and I notice that the checkbox to signup for the email list is not checkable (or uncheckable) in Safari. It works in other browsers though.

See:

http://www.kircaldy.com/store

If I write the code to where the default is to have the box checked rather than unchecked, it does indeed show up as a checked box, but since there's no way to uncheck it, it would be rather cheeky to leave it like that.

I've browsed some other live stores in Safari and they don't seem to have this problem, so following is my reg file.

<!-- BEGIN: reg -->

<div class="boxContent">

<div style="padding-bottom: 3px;"><span class="txtContentTitle">{LANG_REGISTER}</span>

<!-- BEGIN: no_error -->

<p>{LANG_REGISTER_DESC}</p>

<!-- END: no_error -->

<!-- BEGIN: error -->

<p class="txtError">{VAL_ERROR}</p>

<!-- END: error -->

<form name="registerForm" method="post" action="{VAL_ACTION}">

<table border="0" cellspacing="0" cellpadding="3" width="100%">

<tr>

<td colspan="2" class="tdcartTitle">{LANG_PERSONAL_DETAILS}</td>

<td colspan="2" class="tdcartTitle">{LANG_ADDRESS}</td>

</tr>

<tr>

<td align="left">{LANG_TITLE}</td>

<td align="left"><input name="title" type="text" class="textbox" id="title" size="5" value="{VAL_TITLE}" tabindex="1" />

{LANG_TITLE_DESC} </td>

<td align="left">{LANG_ADDRESS_FORM}</td>

<td align="left"><input name="add_1" type="text" class="textbox" id="add_1" size="16" value="{VAL_ADD_1}" tabindex="7" />

*</td>

</tr>

<tr>

<td align="left">{LANG_FIRST_NAME}</td>

<td align="left"><input name="firstName" type="text" class="textbox" id="firstName" size="16" value="{VAL_FIRST_NAME}" tabindex="2" />

*</td>

<td>&nbsp;</td>

<td align="left"><input name="add_2" type="text" class="textbox" id="add_2" size="16" value="{VAL_ADD_2}" tabindex="8" /></td>

</tr>

<tr>

<td align="left">{LANG_LAST_NAME}</td>

<td align="left"><input name="lastName" type="text" class="textbox" id="lastName" size="16" value="{VAL_LAST_NAME}" tabindex="3" />

* </td>

<td align="left">{LANG_TOWN}</td>

<td align="left"><input name="town" type="text" class="textbox" id="town" size="16" value="{VAL_TOWN}" tabindex="9" />

*</td>

</tr>

<tr>

<td align="left">{LANG_EMAIL_ADDRESS}</td>

<td align="left"><input name="email" type="text" class="textbox" id="email" size="16" value="{VAL_EMAIL}" tabindex="4" />

* </td>

<td align="left">{LANG_COUNTY}</td>

<td align="left"><input name="county" type="text" class="textbox" id="county" size="16" value="{VAL_COUNTY}" tabindex="10" />

*</td>

</tr>

<tr>

<td align="left">{LANG_TELEPHONE}</td>

<td align="left"><input name="phone" type="text" class="textbox" id="phone" size="16" value="{VAL_PHONE}" tabindex="5" />

* </td>

<td align="left">{LANG_COUNTRY}</td>

<td nowrap='nowrap' align="left"><select name="country" class="textbox" tabindex="11">

<!-- BEGIN: repeat_countries -->

<option value="{VAL_COUNTRY_ID}" {VAL_COUNTRY_SELECTED}>{VAL_COUNTRY_NAME}</option>

<!-- END: repeat_countries -->

</select>

*</td>

</tr>

<tr>

<td align="left">{LANG_MOBILE}</td>

<td align="left"><input name="mobile" type="text" class="textbox" id="mobile" size="16" value="{VAL_MOBILE}" tabindex="6" /></td>

<td align="left">{LANG_POSTCODE}</td>

<td align="left"><input name="postcode" type="text" class="textbox" id="postcode" size="16" value="{VAL_POSTCODE}" tabindex="12" />

*</td>

</tr>

<tr>

<td colspan="4" class="tdcartTitle">{LANG_SECURITY_DETAILS}</td>

</tr>

<tr>

<td align="left">{LANG_CHOOSE_PASSWORD}</td>

<td align="left"><input name="password" type="password" class="textbox" id="password" size="16" value="{VAL_PASSWORD}" tabindex="13" />

* </td>

<td align="left">{LANG_CONFIRM_PASSWORD}</td>

<td align="left"><input name="passwordConf" type="password" class="textbox" id="passwordConf" size="16" value="{VAL_PASSWORD_CONF}" tabindex="14" />

* </td>

</tr>

<tr>

<td colspan="4" class="tdcartTitle">{LANG_PRIVACY_SETTINGS}</td>

</tr>

<tr>

<td colspan="4" align="left">{LANG_RECIEVE_EMAILS} &nbsp;&nbsp;

<input type="checkbox" name="optIn1st" value="1" tabindex="15" {VAL_OPTIN1ST_CHECKED}/><br>

{LANG_EMAIL_FORMAT}

<br>

<select name="htmlEmail" class="textbox" tabindex="16">

<option value="1">{LANG_HTML_FORMAT}</option>

<option value="0" {VAL_HTMLEMAIL_SELECTED}>{LANG_PLAIN_TEXT}</option>

</select>

</td>

</tr>

<tr>

<td colspan="4" align="left">We hate getting spam too!!!<br>Your email address and personal info are kept in the strictest confidence. </td>

</tr>

<tr>

<td colspan="4" align="left">&nbsp;</td>

</tr>

<tr>

<td colspan="4" align="right"><a href="java script:submitDoc('registerForm');" class="txtCheckout" tabindex="17">{LANG_REGISTER_SUBMIT}</a></td>

</tr>

</table>

</form>

</div>

</div>

<!-- END: reg -->

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...