X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   Add to Cart button on Wishlist Page (https://forum.x-cart.com/showthread.php?t=4954)

BoomBoomBap 10-26-2003 02:33 PM

Add to Cart button on Wishlist Page
 
I've searched around for an answer to this question but couldnt find one.

How can I add an "Add to Cart" button for each item on the wishlist page?

Here's the code I've tried adding to /modules/Wishlist/wishlist.tpl with no success

Code:

<FORM method=post name="orderform" action="cart.php">
<INPUT type=hidden name=mode value="add">
<INPUT type=hidden name=productid value="{$wl_products[product].productid}&quantity={$wl_products[product].amount}">
{include file="buttons/add_to_cart.tpl"}
</form>


When I try this I get a Javascript error.
I've tried using a regular submit button as well but the item does not get added to the cart.

Thanks for the help !

adpboss 10-26-2003 07:12 PM

You will have to disect my code. This is from my listing in the products.tpl.

Code:

<tr valign="top">
                          <td><form name=orderform_{%product.index%} method=post action="cart.php?mode=add">
                    <a href="javascript: document.orderform_{%product.index%}.submit()">
                    {include file="buttons/add_to_cart1.tpl"}</a>
                    <input type=hidden name=amount value=1>
                    <input type=hidden name=mode value=add>
                    <input type=hidden name=productid value="{$products[product].productid}">
                    <input type=hidden name=cat value="{$smarty.get.cat}">
                    <input type=hidden name=page value="{$smarty.get.page}">
                  </form></td></tr>


BoomBoomBap 10-26-2003 08:46 PM

Hmm.... This doesnt work for me. Im using Xcart 3.4.8

Anyone else have any ideas?

Thanks for the help !

BoomBoomBap 11-30-2003 02:36 PM

Here's a very simple solution that worked for me.
May not work for everyone.
This is on 3.4.10



All times are GMT -8. The time now is 06:54 AM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.