Zen Cart Logo
Forums / General Questions / Changing registering info

Changing registering info

Locked

Views: 959

Results 1 to 6 of 6
This thread is locked. New replies are disabled.
3 Nov 2010, 2:56 AM
#1
gamenet avatar

gamenet

Zen Follower

Join Date:
Apr 2010
Posts:
149
Plugin Contributions:
0

Changing registering info

Hi, How do i change what is listen on the sign-up page.

http://www.game net.net.au/index.php?main_page=login

Under Newsletter-Email i want to get rid of the text only and html options. and have the newsletter box already ticked.

How do i do this?

Thanks!

6 Nov 2010, 10:26 AM
#2
gamenet avatar

gamenet

Zen Follower

Join Date:
Apr 2010
Posts:
149
Plugin Contributions:
0

Re: Changing registering info

Guys, cmon. How do i edit the "register" page?

6 Nov 2010, 10:36 AM
#3
stevesh avatar

stevesh

Black Belt

Join Date:
Feb 2005
Location:
Lansing, Michigan USA
Posts:
19,793
Plugin Contributions:
2

Re: Changing registering info

Admin - Configuration - Customer Details - Show Newsletter Checkbox

Why don't you want to give me the option of plain-text emails ?

6 Nov 2010, 11:38 AM
#4
gamenet avatar

gamenet

Zen Follower

Join Date:
Apr 2010
Posts:
149
Plugin Contributions:
0

Re: Changing registering info

I don't think it is necessary to provide a html AND a plain txt email.
most people don't know the difference anyway. i would like to keep it simple by not giving the option, but instead have one box so your either subscribed to it or your not.

Hope you can help :)

6 Nov 2010, 1:01 PM
#5
stevesh avatar

stevesh

Black Belt

Join Date:
Feb 2005
Location:
Lansing, Michigan USA
Posts:
19,793
Plugin Contributions:
2

Re: Changing registering info

I'll respectfully disagree with both those statements, but you can open tpl_modules_create_account.php and remove or comment out the red part:

<fieldset> <legend><?php echo ENTRY_EMAIL_PREFERENCE; ?></legend> <?php if (ACCOUNT_NEWSLETTER_STATUS != 0) { ?> <?php echo zen_draw_checkbox_field('newsletter', '1', $newsletter, 'id="newsletter-checkbox"') . '<label class="checkboxLabel" for="newsletter-checkbox">' . ENTRY_NEWSLETTER . '</label>' . (zen_not_null(ENTRY_NEWSLETTER_TEXT) ? '<span class="alert">' . ENTRY_NEWSLETTER_TEXT . '</span>': ''); ?> <br class="clearBoth" /> <?php } ?>

<?php echo zen_draw_radio_field('email_format', 'HTML', ($email_format == 'HTML' ? true : false),'id="email-format-html"') . '<label class="radioButtonLabel" for="email-format-html">' . ENTRY_EMAIL_HTML_DISPLAY . '</label>' . zen_draw_radio_field('email_format', 'TEXT', ($email_format == 'TEXT' ? true : false), 'id="email-format-text"') . '<label class="radioButtonLabel" for="email-format-text">' . ENTRY_EMAIL_TEXT_DISPLAY . '</label>'; ?><br class="clearBoth" />

</fieldset>
6 Nov 2010, 3:38 PM
#6
gamenet avatar

gamenet

Zen Follower

Join Date:
Apr 2010
Posts:
149
Plugin Contributions:
0

Re: Changing registering info

That's okay, :)
Cheers for helping