Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Create two content categories for each form with following contents. Replace {site key} and {secret key} placeholders with your values generated by reCaptcha

contentUri content notes 
contactus_form_recaptcha_public_key <script src='https://www.google.com/recaptcha/api.js'></script>
<div class="g-recaptcha" data-sitekey="{site key}"></div> 
display reCaptcha on Contact Us form 
contactus_form_recaptcha_private_key {secret key}Will be used during submit verification 
registration_form_recaptcha_public_key <script src='https://www.google.com/recaptcha/api.js'></script>
<div class="g-recaptcha" data-sitekey="{site key}"></div> 
display reCaptcha on Registration form 
registration_form_recaptcha_private_key {secret key} Will be used during submit verification 
newsletter_form_recaptcha_public_key <script src='https://www.google.com/recaptcha/api.js'></script>
<div class="g-recaptcha" data-sitekey="{site key}"></div> 
display reCaptcha on Newsletter form 
newsletter_form_recaptcha_private_key {secret key} Will be used during submit verification 

Example

 

Example of contact form component with reCaptcha enabled:

...