The easiest way is
In catalog\template\default\content\account_create.tpl you will find
delete it and replace with
This will hide the newsletter option from your customers and automatically unsubscribe them.
Make a similar modification to account_update.tpl and you are done.
The newsletter stuff will still be in the admin but it will now have no effect so you can ignore it there.
In catalog\template\default\content\account_create.tpl you will find
Code: Select all
<div class="e"><?php echo $text_newsletter; ?></div>
<div class="f">
<table>
<tr>
<td width="150"><?php echo $entry_newsletter; ?></td>
<td><?php if ($newsletter == 1) { ?>
<input type="radio" name="newsletter" value="1" CHECKED />
<?php echo $text_yes; ?>
<input type="radio" name="newsletter" value="0" />
<?php echo $text_no; ?>
<?php } else { ?>
<input type="radio" name="newsletter" value="1" />
<?php echo $text_yes; ?>
<input type="radio" name="newsletter" value="0" CHECKED />
<?php echo $text_no; ?>
<?php } ?></td>
</tr>
</table>
</div>
Code: Select all
<input type="hidden" name="newsletter" value="0" />
Make a similar modification to account_update.tpl and you are done.
The newsletter stuff will still be in the admin but it will now have no effect so you can ignore it there.
Who is online
Users browsing this forum: No registered users and 3 guests