I was wondering if it 's possible to enable the "add to wishlist" function when a product is not available for purchase. For instance, when you enable inventory tracking for a product and the inventory is set to zero and you do not allow backordering, the "add to wishlist" button is disabled. Is there anyway to enable this and then when the product comes available, customers who have added the product to their wishlist get notified? Anyone have insight on this?
Thanks!
Adding a product to a wishlist when buying the product is di
- jmestep
- AbleCommerce Angel
- Posts: 8164
- Joined: Sun Feb 29, 2004 8:04 pm
- Location: Dayton, OH
- Contact:
Re: Adding a product to a wishlist when buying the product is di
Try this:
In the BuyProductDialog.ascx.cs
private void HideAddToBasket()
{
AddToBasketButton.Visible = false;
AddToWishlistButton.Visible = false;
rowQuantity.Visible = false;
}
Change to this: AddToWishlistButton.Visible=true; for that line of code only
In the BuyProductDialog.ascx.cs
private void HideAddToBasket()
{
AddToBasketButton.Visible = false;
AddToWishlistButton.Visible = false;
rowQuantity.Visible = false;
}
Change to this: AddToWishlistButton.Visible=true; for that line of code only
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: Adding a product to a wishlist when buying the product is di
Excellent. I'll give that a try. Thank you!