[ad_1]
We don’t have an option for that. The captcha box gets added in the default order of the fields.
You can try setting a priority for when it’s added by editing advanced-google-recaptcha/inc/core.php around line 310:
add_action( 'woocommerce_checkout_process', 'advanced_google_recaptcha_check_woo_checkout_form' );
and change that to:add_action( 'woocommerce_checkout_process', 'advanced_google_recaptcha_check_woo_checkout_form', 1);
if you want it to run sooner or:add_action( 'woocommerce_checkout_process', 'advanced_google_recaptcha_check_woo_checkout_form' , 1000);
if you want it to run later.
