Page 1 of 1

Adding a product to a wishlist when buying the product is di

Posted: Fri Apr 25, 2008 9:21 am
by DFresh
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!

Re: Adding a product to a wishlist when buying the product is di

Posted: Fri Apr 25, 2008 3:37 pm
by jmestep
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

Re: Adding a product to a wishlist when buying the product is di

Posted: Sat Apr 26, 2008 5:55 pm
by DFresh
Excellent. I'll give that a try. Thank you!