Kryptronic Software Support Forum

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.

#1 01-06-2010 12:15:20

forefront
Member
Registered: 03-29-2004
Posts: 190

How can we remove the "subscription" option within checkout

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

 

#2 01-06-2010 14:02:22

webmaster
Administrator
From: York, PA
Registered: 04-20-2001
Posts: 19871
Website

Re: How can we remove the "subscription" option within checkout

In the management interface, set the status for that checkout form field to false under Store | Commerce | Checkout Form Fields.


Nick Hendler

Offline

 

#3 01-06-2010 18:07:12

forefront
Member
Registered: 03-29-2004
Posts: 190

Re: How can we remove the "subscription" option within checkout

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:

Code:

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

 

#4 01-10-2010 13:54:13

forefront
Member
Registered: 03-29-2004
Posts: 190

Re: How can we remove the "subscription" option within checkout

Bump. This is still not clear as the solution you proposed does not reflect our setup.

Offline

 

#5 01-12-2010 14:54:08

webmaster
Administrator
From: York, PA
Registered: 04-20-2001
Posts: 19871
Website

Re: How can we remove the "subscription" option within checkout

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'


Nick Hendler

Offline

 

#6 02-27-2010 18:53:04

kiwimum
Member
Registered: 03-30-2004
Posts: 305
Website

Re: How can we remove the "subscription" option within checkout

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)


Jessica
:: CCP5 > CCP6 > Magento > CCP7

Offline

 

#7 03-04-2010 17:42:35

clumpidy
Member
Registered: 12-08-2009
Posts: 10

Re: How can we remove the "subscription" option within checkout

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

 

#8 06-17-2010 13:38:02

jscottshanks
Member
Registered: 05-06-2010
Posts: 9

Re: How can we remove the "subscription" option within checkout

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

 

Board footer