is_registration_enabled();
$login_reminder_at_checkout = 'yes' === get_option( 'woocommerce_enable_checkout_login_reminder' );
if ( is_user_logged_in() ) {
return;
}
if ( $login_reminder_at_checkout ) : ?>
' . esc_html__( 'Click here to login', 'woocommerce' ) . '',
'notice'
);
?>
esc_html__( 'If you have shopped with us before, please enter your details below. If you are a new customer, please proceed to the Billing section.', 'woocommerce' ),
'redirect' => wc_get_checkout_url(),
'hidden' => ! $show_form,
)
);
endif;