first commit

This commit is contained in:
2024-11-05 12:22:50 +01:00
commit e5682a3912
19641 changed files with 2948548 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
/**
*
* Recaptcha V2 Only
*
* This script add dynamically a new div at the end of the contact form
* The captcha is render inside this div by Recaptcha V2
* If needed you can change the selector by overriding this file in your theme
*/
$(document).ready(function () {
$('.form-fields').append('<div id="captcha-box"></div>');
});