Home / Admin / Change Position of v2 Invisible reCAPTCHA Badge
Duplicate Snippet

Embed Snippet on Your Site

Change Position of v2 Invisible reCAPTCHA Badge

Changes the position of the v2 Invisible reCAPTCHA badge

<10
Code Preview
php
<?php
/**
 * Change position of v2 Invisible reCAPTCHA badge
 *
 * @link   https://wpforms.com/developers/how-to-change-the-position-of-the-v2-invisible-recaptcha-badge/
 * 
 * For support, please visit: https://www.facebook.com/groups/wpformsvip
 */
function wpf_dev_invisible_recaptcha_position( $data, $form_data ) {
     
    $type = wpforms_setting( 'recaptcha-type', 'v2' );
    if ( 'invisible' === $type ) {
        $data[ 'badge' ] = 'inline';
    }
 
    return $data;
 
}
add_filter( 'wpforms_frontend_recaptcha', 'wpf_dev_invisible_recaptcha_position', 10, 2 );

Comments

Add a Comment