25% off ProSNIPC25OFF

EDD: Disable Guest Checkout

Forces customers to be logged in before completing an EDD purchase, removing the guest checkout option from the checkout page.

PHPby SnipCraft
php
<?php
add_filter( 'edd_no_guest_checkout', 'scseed_edd_require_login_to_checkout' );
function scseed_edd_require_login_to_checkout( $no_guest ) {
    if ( ! class_exists( 'Easy_Digital_Downloads' ) ) {
        return $no_guest;
    }
    return true;
}
#checkout#edd#guest#registration#security