dookie Posted February 3, 2009 Share Posted February 3, 2009 (edited) Hi, Just installed Wishlist 4.1 (latest from FIMBLE). Install went fine, however, I noticed that the link to "Add to Wishlist" points to "product_info.php?cPath=24_115&products_id=28&action=add_product" - which is the same as adding a product to the shopping cart. Do you know the true link to add a product to the wishlist? Code in question: catalog/product_info.php <td align="center"><?php echo tep_image_submit('button_wishlist.gif', 'Add to Wishlist', 'name="wishlist" value="wishlist"'); ?></td> Many thanks! Edited February 3, 2009 by dookie Quote Link to comment Share on other sites More sharing options...
dookie Posted February 3, 2009 Author Share Posted February 3, 2009 Hi,Just installed Wishlist 4.1 (latest from FIMBLE). Install went fine, however, I noticed that the link to "Add to Wishlist" points to "product_info.php?cPath=24_115&products_id=28&action=add_product" - which is the same as adding a product to the shopping cart. Do you know the true link to add a product to the wishlist? Code in question: catalog/product_info.php <td align="center"><?php echo tep_image_submit('button_wishlist.gif', 'Add to Wishlist', 'name="wishlist" value="wishlist"'); ?></td> Many thanks! Found the fix: add a comma between name="wishlist"' and 'value="wishlist" <td align="center"><?php echo tep_image_submit('button_wishlist.gif', 'Add to Wishlist', 'name="wishlist"', 'value="wishlist"'); ?></td> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.