Remove Wishlist options
Remove Wishlist options
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?
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?
- jmestep
- AbleCommerce Angel
- Posts: 8164
- Joined: Sun Feb 29, 2004 8:04 pm
- Location: Dayton, OH
- Contact:
Re: Remove Wishlist options
In website --> file manager, click the product display page and check Show add to wishlist? No
Gift wrap field is in shipmeth.aspx
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
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
Re: Remove Wishlist options
good grief. I've posted this to the wrong forum. This was supposed to be a 7.0 question. sorry.
- jmestep
- AbleCommerce Angel
- Posts: 8164
- Joined: Sun Feb 29, 2004 8:04 pm
- Location: Dayton, OH
- Contact:
Re: Remove Wishlist options
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"]]
<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
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
Re: Remove Wishlist options
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?
- jmestep
- AbleCommerce Angel
- Posts: 8164
- Joined: Sun Feb 29, 2004 8:04 pm
- Location: Dayton, OH
- Contact:
Re: Remove Wishlist options
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"]]
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
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
Re: Remove Wishlist options
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.
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.
- jmestep
- AbleCommerce Angel
- Posts: 8164
- Joined: Sun Feb 29, 2004 8:04 pm
- Location: Dayton, OH
- Contact:
Re: Remove Wishlist options
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
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