Recaptcha v3

FOXIK
36 Posts
FOXIK posted this 20 March 2020
Ask a Question

How to make Recaptcha v3 appear only on the form page and not on all pages?

In addition, the sending of messages does not work, every time the following message appears: "There was a problem sending your message. Please try again later."

Contact Form 7

How to make Recaptcha v3 appear only on the form page and not on all pages? In addition, the sending of messages does not work, every time the following message appears: "There was a problem sending your message. Please try again later." Contact Form 7
Vote to pay developers attention to this features or issue.
1 Reply
Order By: Standard | Newest
Support Team
Support Team posted this 20 March 2020

Hi,

reCaptcha v3 works by analyzing behavior across an entire site. Therefore it works on all pages. But you can try to hide the badge with the following CSS:

/* Hides the reCAPTCHA on every page */
.grecaptcha-badge {
    display: none !important;
}

Add this code the page where you want to display the badge

/* Shows the reCAPTCHA on the page */
  .grecaptcha-badge {
    display: block !important;
}

CSS can be added to the Site Settings >> CSS for all website and Page Settings >> CSS for this specific page only.

In addition, the sending of messages does not work, every time the following message appears: "There was a problem sending your message. Please try again later."
Contact Form 7

Nicepage form uses CF7 plugin as the provider to send emails. Therefore most probably the plugin can not send emails. Please test the form created directly by the CF7 plugin. If the issue continues then the problem is related to the server configuration.

Please let us know if you have any further questions.

...................................................
Sincerely,
Olivia
Nicepage Support Team

Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp

Hi, reCaptcha v3 works by analyzing behavior across an entire site. Therefore it works on all pages. But you can try to hide the badge with the following CSS: /* Hides the reCAPTCHA on every page */ .grecaptcha-badge { display: none !important; } Add this code the page where you want to display the badge /* Shows the reCAPTCHA on the page */ .grecaptcha-badge { display: block !important; } CSS can be added to the Site Settings >> CSS for all website and Page Settings >> CSS for this specific page only. > In addition, the sending of messages does not work, every time the following message appears: "There was a problem sending your message. Please try again later." Contact Form 7 Nicepage form uses CF7 plugin as the provider to send emails. Therefore most probably the plugin can not send emails. Please test the form created directly by the CF7 plugin. If the issue continues then the problem is related to the server configuration. Please let us know if you have any further questions. ................................................... Sincerely, Olivia Nicepage Support Team Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1 Follow us on Facebook: http://facebook.com/nicepageapp
You must log in or register to leave comments