如何将reCAPTCHA添加到Woocommerce供应商注册

问题描述 投票:0回答:1

我注意到有关WooCommerce注册的其他一些问题,但是没有任何关于WooCommerce供应商插件以及供应商如何在网站上注册的问题。

Research允许我添加其他字段,我发现了一些示例reCAPTCHA code但是我错过了两者之间的重要联系,以便在WooCommerce供应商注册页面上查看reCAPTCHA。

是否可以通过在上面的示例代码中执行类似的操作来挂钩wcpv_shortcode_registration_form_process

/**
 * Add reCapcha to the Vendor registration page 
 */

function wooc_validate_re_captcha_field( $username, $email, $wpErrors )
{
    $remoteIP = $_SERVER['REMOTE_ADDR'];
    $recaptchaResponse = $_POST['g-recaptcha-response'];

    $response = wp_remote_post( 'https://www.google.com/recaptcha/api/siteverify', [
        'body' => [
            'secret'   => 'PRIVATE KEY HERE !!!',
            'response' => $recaptchaResponse,
            'remoteip' => $remoteIP
        ]
    ] );

    $response_code = wp_remote_retrieve_response_code( $response );
    $response_body = wp_remote_retrieve_body( $response );

    if ( $response_code == 200 )
    {
        $result = json_decode( $response_body, true );

        if ( ! $result['success'] )
        {
            switch ( $result['error-codes'] )
            {
                case 'missing-input-secret':
                case 'invalid-input-secret':
                    $wpErrors->add( 'recaptcha', __( '<strong>ERROR</strong>: Invalid reCAPTCHA secret key.', 'woocommerce' ) );
                    break;

                case 'missing-input-response' :
                case 'invalid-input-response' :
                    $wpErrors->add( 'recaptcha', __( '<strong>ERROR</strong>: Please check the box to prove that you are not a robot.', 'woocommerce' ) );
                    break;

                default:
                    $wpErrors->add( 'recaptcha', __( '<strong>ERROR</strong>: Something went wront validating the reCAPTCHA.', 'woocommerce' ) );
                    break;
            }
        }
    }
    else
    {
        $wpErrors->add( 'recaptcha_error', __( '<strong>Error</strong>: Unable to reach the reCAPTCHA server.', 'woocommerce' ) );
    }
}
        add_action( 'wcpv_shortcode_registration_form_process', 'wooc_validate_re_captcha_field', 10, 3 );

我确实试过这个无济于事。

非常感谢您提供的任何帮助。

php wordpress woocommerce
1个回答
1
投票

为了使供应商注册上的验证码可见,您需要在用于创建附加注册表单的代码之间添加一些javascript代码行。

在这里,在视图中创建字段的函数之前,添加以下代码:

vendors_reg_custom_field() { ?>
<script src='https://www.google.com/recaptcha/api.js' async defer></script>

在关闭PHP函数之前,添加:

<p class="form-row form-row-wide">
<div class="g-recaptcha" data-sitekey="YOUR-RECAPTCHA-SITE-KEY-HERE</div>
</p>
<?php 
}

这将使验证码可见。干杯。

你可以找到更多帮助here

© www.soinside.com 2019 - 2024. All rights reserved.