Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

/create_account.php


MoisesZaragoza

Recommended Posts

Posted

On the /create_account.php page how do i make the Checkbox to be checked by default

at the end of the day the code will be good

Posted

see how the newsletter for the default osc is setup in create_account.php

 

				<td class="main"><?php echo ENTRY_NEWSLETTER; ?></td>
			<td class="main"><?php echo tep_draw_checkbox_field('newsletter', '1') . ' ' . (tep_not_null(ENTRY_NEWSLETTER_TEXT) ? '<span class="inputRequirement">' . ENTRY_NEWSLETTER_TEXT . '</span>': ''); ?></td>

 

You could set the default to the tep_draw_checkbox_field function for the checkbox.

Posted

Yep that is wehat i have

 

<table border="0" cellspacing="2" cellpadding="2">
<tr>
	<td class="main"><?php echo ENTRY_NEWSLETTER; ?></td>
	<td class="main"><?php echo tep_draw_checkbox_field('newsletter', '1') . ' ' . (tep_not_null(ENTRY_NEWSLETTER_TEXT) ? '<span class="inputRequirement">' . ENTRY_NEWSLETTER_TEXT . '</span>': ''); ?></td>
</tr>
</table>

 

 

But the box is not checked

at the end of the day the code will be good

Posted

probably I missed it should be

 

				<td class="main"><?php echo ENTRY_NEWSLETTER; ?></td>
			<td class="main"><?php echo tep_draw_checkbox_field('newsletter', '1', true) . ' ' . (tep_not_null(ENTRY_NEWSLETTER_TEXT) ? '<span class="inputRequirement">' . ENTRY_NEWSLETTER_TEXT . '</span>': ''); ?></td>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...