Thx for this great extension. Ive tried to edit the registration.phtml template to make the newsletter box checked on registration:
<?php if ($this->isNewsletterEnabled()): ?> <li> <input type="checkbox" name="is_subscribed" title="<?php echo $this->__('Sign Up for Newsletter') ?>" value="1" id="is_subscribed" <?php if($this->getFormData()->getIsSubscribed()): ?> checked="checked"<?php endif ?> checked/> <label for="is_subscribed"><?php echo $this->__('Sign Up for Newsletter') ?></label> </li> <?php endif ?>
But the code “checked />” breaks my registration and gives me the error ‘Cant save customer”
I know this isnt something recaptcha is involed but do you know any solution or could you implement it as an option?
I know this isnt something recaptcha is involed but do you know any solution or could you implement it as an option?
Questions not directly related to this extension should be posted in the general forums. This will give other forum members a chance to help you as well.
Try out the change to the code below:
<input type="checkbox" name="is_subscribed" title="<?php echo $this->__('Sign Up for Newsletter') ?>" value="1" id="is_subscribed" checked="checked"/>