In the registration process, the default for receiving newsletter is NO. 99% of the users were saying no to receiving newsletters on my shop and I was worried...did they not want to receive newsletters?
Then I changed the default to YES, and now 99% of the users are saying yes to receiving newsletters...as it turns out, most users don't bother changing the default.
So, my feature request is this: in the core, let's make the default YES for newsletters in the registration process.
OC2PS
OC 3.0.3.7, vQmod 2.6.2, Journal3 theme
Arcfesték, Csillámtetoválás, Henna
Check out: All my extensions | My FREE extensions

http://forum.opencart.com/viewtopic.php?f=19&t=19372
I do realize that this can be done. In fact I did this in my 1.2.9 (my current production version)...(did I hear another "lazy"?).
What I am requesting is that you supply it like this in the core releases :-)
OC2PS
OC 3.0.3.7, vQmod 2.6.2, Journal3 theme
Arcfesték, Csillámtetoválás, Henna
Check out: All my extensions | My FREE extensions
Norman in 't Veldt
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
[How to] BTW + Verzend + betaal setup.
Germany has the most stringent laws in this regard and this can not be illegal in Germany so am pretty sure it can't be anywhere else.
If you audit permissions by opt-out i.e. include everyone unless they say NO (i.e. ask you to remove them) in a mailing list etc, THAT is illegal. In other words, if you were to remove the checkbox and have everybody "opted in" by default, giving them the option only to log into their account details to opt out, that would be illegal.
The important distinction is providing the users the option BEFORE the action. By having the checkbox ticked, but allowing the users to change it, you are still auditing permissions via opt-in, and that is legal in all the countries with whose laws I am familiar with/ have received legal advice on (UK, US, DE, GR, NL, CZ, IN, AT)
OC2PS
OC 3.0.3.7, vQmod 2.6.2, Journal3 theme
Arcfesték, Csillámtetoválás, Henna
Check out: All my extensions | My FREE extensions
Norman in 't Veldt
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
[How to] BTW + Verzend + betaal setup.
So how about a little checkbox in admin for this? (similar to postcode required)
OC2PS
OC 3.0.3.7, vQmod 2.6.2, Journal3 theme
Arcfesték, Csillámtetoválás, Henna
Check out: All my extensions | My FREE extensions
edit catalog/view/theme/adx/template/account/register.tpl line 133 (Version 1.5.1.3)How to make newsletter default option to YES ?
From:
Code: Select all
<td><?php if ($newsletter == 1) { ?>
Code: Select all
<td><?php if ($newsletter == 1 || $newsletter == '') { ?>

From:
Code: Select all
<td><?php if ($newsletter == 1) { ?>
To:
Code: Select all
<td><?php if ($newsletter == 1 || $newsletter == '') { ?>
however this seems to have no luck?
by uksitebuilder » Tue Dec 06, 2011 9:59 am
edit: catalog/view/theme/default/template/account/register.tpl
find
Code: Select all
<td><?php if ($newsletter == 1) { ?>
<input type="radio" name="newsletter" value="1" checked="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="checked" />
<?php echo $text_no; ?>
<?php } ?></td>
change to
Code: Select all
<td><?php if ($newsletter == 0) { ?>
<input type="radio" name="newsletter" value="1" />
<?php echo $text_yes; ?>
<input type="radio" name="newsletter" value="0" checked="checked" />
<?php echo $text_no; ?>
<?php } else { ?>
<input type="radio" name="newsletter" value="1" checked="checked" />
<?php echo $text_yes; ?>
<input type="radio" name="newsletter" value="0" />
<?php echo $text_no; ?>
<?php } ?></td>
edit: catalog/view/theme/default/template/checkout/register.tpl
find
Code: Select all
<input type="checkbox" name="newsletter" value="1" id="newsletter" />
change to
Code: Select all
<input type="checkbox" name="newsletter" value="1" id="newsletter" checked="checked" />
Webmaster for: http://www.getlaidbeds.co.uk + www.mattressmoose.co.uk + www.pixellounge.co.uk
After newsletter == it is NOT a " it is ' 'skitom wrote:Using Version 1.5.1.3 what is the final answer to getting the default subscribe to news letter check box working? i have tried
From:
Code: Select all
<td><?php if ($newsletter == 1) { ?>
To:
Code: Select all
<td><?php if ($newsletter == 1 || $newsletter == '') { ?>
however this seems to have no luck?
https://www.lotnllc.com is your one stop shop for all your computer needs!
OC2PS
OC 3.0.3.7, vQmod 2.6.2, Journal3 theme
Arcfesték, Csillámtetoválás, Henna
Check out: All my extensions | My FREE extensions
"catalog/view/theme/default/template/account/register.tpl" to edit the code?
At the moment I am only making changes through the template (www.website.com/admin) not through the code but would like to make this change to enable to newsletter as default. Is this possible? Is anyone able to give me more detailed information?
http://www.opencart.com/index.php?route ... on_id=7681
R
Users browsing this forum: No registered users and 6 guests