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");