How to make wishlist work in "Catalog Mode"?
How to make wishlist work in "Catalog Mode"?
My store is currently in "Catalog Mode" in the Configure->Store setting. So people cannot purchase anything, but I want them to still be able to add products to their wishlist, even if they can not buy. Anyone know how to do this?
Basem Emara:
http://BasemEmara.com
http://BasemEmara.com
- jmestep
- AbleCommerce Angel
- Posts: 8164
- Joined: Sun Feb 29, 2004 8:04 pm
- Location: Dayton, OH
- Contact:
Re: How to make wishlist work in "Catalog Mode"?
You would have to locate code like this snippet from the ConLib/BuyProductDialog.ascx.cs
private void HideAddToBasket()
{
AddToBasketButton.Visible = false;
AddToWishlistButton.Visible = false;
rowQuantity.Visible = false;
}
Change AddToWishlistButton.Visible=true;
There might be other changes you would have to make, but this would give you a starting point.
private void HideAddToBasket()
{
AddToBasketButton.Visible = false;
AddToWishlistButton.Visible = false;
rowQuantity.Visible = false;
}
Change AddToWishlistButton.Visible=true;
There might be other changes you would have to make, but this would give you a starting point.
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