You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.
I have a site owner who has one main item that he sells, and he would like a link that adds that item to the cart and then proceedes to the Place Order page. Is there a way to do that?
I know that I can go directly to an item's page, but I don't know how to do that and the check out.
Lloyd Sommerer
In the script:
./cgi-bin/library/modules/site_store_cart_contents_add_update.pl
Change the lines:
### CUT
#######################################################################
# Sub Site Store Cart Add To Cart #
#######################################################################
sub site_store_cart_add_to_cart {
$fd_pg = "store";
$fd_sub_pg = "prod";
### CUT
to read:
### CUT
#######################################################################
# Sub Site Store Cart Add To Cart #
#######################################################################
sub site_store_cart_add_to_cart {
$fd_pg = "store";
$fd_sub_pg = "order";
### CUT
This will bounce the user to the order page after adding the item to their cart.
Offline