woocommerce_before_checkout_form, $checkout
woocommerce_before_checkout_form, $checkout
Appears in: woocommerce.11.0.0
Hook Type: action
Displaying hooks found in version: woocommerce.11.0.0do_action('woocommerce_before_checkout_form, $checkout') is found 1 times:
- /templates/checkout/form-checkout.php line 22
if ( ! defined( 'ABSPATH' ) ) { exit; } do_action( 'woocommerce_before_checkout_form', $checkout ); // If checkout registration is disabled and not logged in, the user cannot checkout. if ( ! $checkout->is_registration_enabled() && $checkout->is_registration_required() && ! is_user_logged_in() ) { echo esc_html( apply_filters( 'woocommerce_checkout_must_be_logged_in_message', __( 'You must be logged in to checkout.', 'woocommerce' ) ) ); return; }