Jump to content

Check out and Continue Shopping button


Guest retire_young2005

Recommended Posts

Guest retire_young2005

How can I add a check out and continue shopping button after the customer clicks on the buy button?

RIght now it seems like the page refreshes after a customer clicks the buy button.

I had several people get confused and not complete orders because they did not see the view cart button on the top left of the page.

How can we add additional buttons?

Otherwise everything else is working great :(

Link to comment
Share on other sites

Guest tbladecki

I am working on doing the same thing. I want the customer to be returned to the main or subcat after they select "add to basket", I do not want them return to the same item they just bought and then have to navigate back to the catalog.

However after they select to add to basket the page should refresh and the cart in the main content (left, right, top) should update to show the item was added.

For first issue metioned, I will post a fix as soon as I complete it.

Link to comment
Share on other sites

Guest Denver Dave

Perhaps we ran into the same issue. After clicking on the view cart button, it seems like the customer should have an option to make the purchase or continue shopping from this screen or to continue with the process rather than force them to the logon screen. Or am I missing the advantages of the logon screen?

Link to comment
Share on other sites

  • 11 months later...
  • 8 months later...
Guest pete1991

Hi, I got 2 mods tried and tested.

One makes a pop up come up when they click add to cart,

Another makes it so when they click add to cart, it takes them to the cart itself.

TO do that just go to

/includes/boxes/shoppingCart.inc.php

find these lines

$basket = $cart->add($_POST['add'],$quantity,"");

}

Replace with this

$basket = $cart->add($_POST['add'],$quantity,"");

}

if($ccUserData[0]['customer_id']>0)

{

header("Location: cart.php?act=step2");

}

else

{

header("Location: cart.php?act=cart");

}

exit;

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...