EDD: Skip Cart and Go Straight to Checkout
Bypasses the EDD cart page entirely and sends customers directly to the checkout page when they click a purchase button.
PHPby SnipCraft
php
<?php
add_filter( 'edd_straight_to_checkout', 'scseed_edd_enable_straight_to_checkout' );
function scseed_edd_enable_straight_to_checkout( $enabled ) {
if ( ! class_exists( 'Easy_Digital_Downloads' ) ) {
return $enabled;
}
return true;
}#cart#checkout#conversion#edd#ux