Remove Wishlist options

Store UI, layout, design, look and feel; Discussion on the customer facing pages of your online store. Cascading Style Sheets, Themes, Scriptlets, NVelocity and the components in the ConLib directory.
Post Reply
harris43
Lieutenant (LT)
Lieutenant (LT)
Posts: 64
Joined: Fri Oct 13, 2006 12:17 pm

Remove Wishlist options

Post by harris43 » Wed Aug 13, 2008 10:05 am

Wish list and Gift options. I need to remove all references to them.
wishlist buttons show up on the product page, but I can't seem to find references to it in the code. Gift option is in the checkout pages.

Can someone point me to the files I need to edit for these?

User avatar
jmestep
AbleCommerce Angel
Posts: 8164
Joined: Sun Feb 29, 2004 8:04 pm
Location: Dayton, OH
Contact:

Re: Remove Wishlist options

Post by jmestep » Wed Aug 13, 2008 12:28 pm

In website --> file manager, click the product display page and check Show add to wishlist? No
Gift wrap field is in shipmeth.aspx
Judy Estep
Web Developer
jestep@web2market.com
http://www.web2market.com
708-653-3100 x209
New search report plugin for business intelligence:
http://www.web2market.com/Search-Report ... -P154.aspx

harris43
Lieutenant (LT)
Lieutenant (LT)
Posts: 64
Joined: Fri Oct 13, 2006 12:17 pm

Re: Remove Wishlist options

Post by harris43 » Wed Aug 13, 2008 1:11 pm

good grief. I've posted this to the wrong forum. This was supposed to be a 7.0 question. sorry.

User avatar
jmestep
AbleCommerce Angel
Posts: 8164
Joined: Sun Feb 29, 2004 8:04 pm
Location: Dayton, OH
Contact:

Re: Remove Wishlist options

Post by jmestep » Wed Aug 13, 2008 1:26 pm

That can be set when the onepagecheckout is called:
<conlib>
<summary>Displays a one page checkout form.</summary>
<param name="EnableGiftWrap" default="true">Possible values are true or false. Indicates whether gift wrap options should be shown to the customer.</param>
<param name="EnableMultiShipTo" default="true">Possible values are true or false. Indicates whether multiple shipping destinations are allowed and should be made available to the customer.</param>
<param name="EnableShipMessage" default="false">Possible values are true or false. When true, a field is displayed for the customer to enter delivery instructions for the shipment.</param>
<param name="AllowAnonymousCheckout" default="false">Possible values are true or false. When true, customers are allowed to check out without creating a user account.</param>
</conlib>
Checkout/Default.aspx
[[ConLib:Custom/OnePageCheckout EnableGiftWrap="false" EnableMultiShipTo="false" AllowAnonymousCheckout="true" EnableShipMessage="true"]]
Judy Estep
Web Developer
jestep@web2market.com
http://www.web2market.com
708-653-3100 x209
New search report plugin for business intelligence:
http://www.web2market.com/Search-Report ... -P154.aspx

harris43
Lieutenant (LT)
Lieutenant (LT)
Posts: 64
Joined: Fri Oct 13, 2006 12:17 pm

Re: Remove Wishlist options

Post by harris43 » Thu Aug 14, 2008 3:23 pm

I see that code in the top of the default.aspx page, but it looks to be commented out. Should i just remove the comments and make it live?

User avatar
jmestep
AbleCommerce Angel
Posts: 8164
Joined: Sun Feb 29, 2004 8:04 pm
Location: Dayton, OH
Contact:

Re: Remove Wishlist options

Post by jmestep » Fri Aug 15, 2008 8:54 am

No, that code just shows the definition of what you can do.
This is how you apply the parameters:
[[ConLib:Custom/OnePageCheckout EnableGiftWrap="false" EnableMultiShipTo="false" AllowAnonymousCheckout="true" EnableShipMessage="true"]]
Judy Estep
Web Developer
jestep@web2market.com
http://www.web2market.com
708-653-3100 x209
New search report plugin for business intelligence:
http://www.web2market.com/Search-Report ... -P154.aspx

Mike@MK
Ensign (ENS)
Ensign (ENS)
Posts: 8
Joined: Mon Dec 03, 2007 12:07 pm

Re: Remove Wishlist options

Post by Mike@MK » Wed Sep 24, 2008 9:45 am

Where do I apply this code? I need to hide...
1. Gift Options
2. Mutiple Shipping Addresses

Right now I am using the old Style="display:none" in the DIV tags to do this, but would rather use the admin if possible.

User avatar
jmestep
AbleCommerce Angel
Posts: 8164
Joined: Sun Feb 29, 2004 8:04 pm
Location: Dayton, OH
Contact:

Re: Remove Wishlist options

Post by jmestep » Wed Sep 24, 2008 12:09 pm

It is in the content section when you edit the onepagecheckout.
Judy Estep
Web Developer
jestep@web2market.com
http://www.web2market.com
708-653-3100 x209
New search report plugin for business intelligence:
http://www.web2market.com/Search-Report ... -P154.aspx

Post Reply