/* ==============================
* TEST HOOK LOGIN WOOCOMMERCE
* ============================== */
add_action( 'woocommerce_before_customer_login_form', function () {
echo '
ANTES DEL LOGIN OK
';
}, 20 );
add_action( 'woocommerce_login_form_end', function () {
echo 'HOOK LOGIN OK
';
// Social login (Nextend)
if ( function_exists( 'shortcode_exists' ) && shortcode_exists( 'nextend_social_login' ) ) {
echo '';
echo do_shortcode( '[nextend_social_login]' );
echo '
';
} else {
echo 'No existe shortcode nextend_social_login
';
}
}, 20 );