View Single Post
  #2  
Old 12-09-2009, 08:37 AM
 
mustang mustang is offline
 

eXpert
  
Join Date: Nov 2003
Location: US
Posts: 210
 

Default Re: Skip Cart page, go straight to Checkout page (4.2.x)

Bill from AlteredCart.com helped me out with this one. - Thanks Bill!

To skip the cart display open the cart.php file and change:

Code:
# # Redirect # if ($config["General"]["redirect_to_cart"] == "Y") { if (!empty($active_modules["SnS_connector"])) $is_sns_action['AddToCart'][] = $productid; func_header_location("cart.php");

to:

Code:
# # Redirect # if ($config["General"]["redirect_to_cart"] == "Y") { if (!empty($active_modules["SnS_connector"])) $is_sns_action['AddToCart'][] = $productid; func_header_location("cart.php?mode=checkout");
__________________
X-Cart Gold 4.2.3
-----
PHP 5.2.17 | MySQL 5.1.52
Reply With Quote