After a product is added to the cart, the shopper is sent straight to checkout instead of staying on the product page or going to the cart.
PHP
add_filter("add_to_cart_redirect", "wptu_add_to_cart_redirect");
function wptu_add_to_cart_redirect()
{
global $woocommerce;
$wptu_redirect_checkout = $woocommerce->cart->get_checkout_url();
return $wptu_redirect_checkout;
}