You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.
Pages: 1
In checkout we want to remove:
"I would like to create a subscription"
which is checked by default. Where in the settings is this?
Thanks!
Offline
webmaster wrote:
In the management interface, set the status for that checkout form field to false under Store | Commerce | Checkout Form Fields.
That field is not displayed.
We have:
Update Display Name Form Section Display Indicator Field Order Update Discount Code Discounts, Coupons, Credits and Gift Certificates True (1) 1 Update EU VAT number EU VAT number True (1) 2 Update Disability Selection Tax Exemption Information False (0) 2 Update Custom Field 1 Other Information False (0) 3 Update Custom Field 2 Other Information False (0) 4 Update Custom Field 3 Other Information False (0) 5 Update Custom Field 4 Other Information False (0) 6 Update Custom Field 5 Other Information False (0) 7 Update Custom Field 6 Other Information False (0) 8 Update Custom Field 7 Other Information False (0) 9 Update Custom Field 8 Other Information False (0) 10 Update Custom Field 9 Other Information False (0) 11 Update Custom Field 10 Other Information False (0) 12
Offline
Bump. This is still not clear as the solution you proposed does not reflect our setup.
Offline
I'm sorry. Pointed you to the wrong spot. This would be done by accessing raw database admin and executing this raw statement:
UPDATE core_formfields SET type='HIDDEN-REG', defaultvalue='', required='0' WHERE id='core.createaccount.sublist' OR id='ecom.guestco.gsubscript'
Offline
How do we remove the entire "subscription" section in checkout and from the account pages?
Found how to remove it from account pages: https://forum.kryptronic.com/viewtopic.php?id=24415
private/core/CORE/includes/accountconf.php
comment out:
<!--<h3>Email Subscriptions</h3>
<p>Choose to subscribe and unsubscribe to all available email subscription lists.</p>
<p><a href="<?php print $link_subs; ?>" title="Email Subscriptions">Click here to manage your email subscriptions.</a></p>-->
Still not sure how to get it out of the checkout pages...
Edit: nevermind, Nick's raw statement seems to have removed it, though I thought that was just for unchecking the option.
Last edited by kiwimum (02-27-2010 19:05:00)
Offline
What if you just want to change the text from "I would like to create a subscription" to something more friendly like "I would like to receive emails about exciting new offers from this great web site"?
Offline
webmaster wrote:
I'm sorry. Pointed you to the wrong spot. This would be done by accessing raw database admin and executing this raw statement:
UPDATE core_formfields SET type='HIDDEN-REG', defaultvalue='', required='0' WHERE id='core.createaccount.sublist' OR id='ecom.guestco.gsubscript'
What statement would you execute if you want to re-enable this feature?
Thanks,
Scott
Offline
Pages: 1