Osclass forums
Development => Development => Topic started by: Sophia_OS on October 10, 2018, 03:52:02 am
-
hey,
how to put a osclass recaptcha in a static page?
i have a static page and i want to have a recaptcha before submitting the form.
osclass recaptcha (osc_show_recaptcha()) is not working! or we have to do a core edit!
please help to do this,
theme bender,
thanks,
-
Is there a solution for this?
-
|-------------------------|
| EDITED, WORKS! |
|-------------------------|
Hello!
You would need a function that would verify the captcha on that specific page. Something like:
<?php
function wm_captcha_static_page() {
if(Params::getParam('page') == 'page' && Params::getParam('id') == 'YOUR PAGE ID') {
if(osc_recaptcha_private_key() != '') {
if(!osc_check_recaptcha()) {
osc_add_flash_error_message( _m('The Recaptcha code is wrong') );
$this->redirectTo(osc_base_url(true)."?page=page&id=".Params::getParam('id'));
}
}
}
}
osc_add_hook('init', 'wm_captcha_static_page');
Then you need to have a form with some hidden inputs:
<form class="nocsrf">
<input type="hidden" name="page" value="page" /> <!-- IMPORTANT -->
<input type="hidden" name="id" value="23" /> <!-- CHANGE ID! - IMPORTANT -->
<input type="hidden" name="post_page_captcha" value="1" /> <!-- IMPORTANT -->
<?php osc_show_recaptcha('register'); ?>
<button type="submit" value="Submit">Submit</button>
</form>
Regards.
-
Hello!
You would need a function that would verify the captcha on that specific page. Something like:
<?php
function wm_captcha_static_page() {
if(Params::getParam('page') == 'page' && Params::getParam('id') == 'YOUR PAGE ID') {
if(osc_recaptcha_private_key() != '') {
if(!osc_check_recaptcha()) {
osc_add_flash_error_message( _m('The Recaptcha code is wrong') );
$this->redirectTo(osc_base_url(true)."?page=page&id=".Params::getParam('id'));
}
}
}
}
osc_add_hook('init', 'wm_captcha_static_page');
Regards.
Thanks a lot,
Im on my phone these days. I will test it and post the result after i reach my pc.
Thanks
-
Hello!
You would need a function that would verify the captcha on that specific page. Something like:
<?php
function wm_captcha_static_page() {
if(Params::getParam('page') == 'page' && Params::getParam('id') == 'YOUR PAGE ID') {
if(osc_recaptcha_private_key() != '') {
if(!osc_check_recaptcha()) {
osc_add_flash_error_message( _m('The Recaptcha code is wrong') );
$this->redirectTo(osc_base_url(true)."?page=page&id=".Params::getParam('id'));
}
}
}
}
osc_add_hook('init', 'wm_captcha_static_page');
Regards.
@patrick,
i put page-id and put the function in functions.php but did not work!
-
Hello!
You would need a function that would verify the captcha on that specific page. Something like:
<?php
function wm_captcha_static_page() {
if(Params::getParam('page') == 'page' && Params::getParam('id') == 'YOUR PAGE ID') {
if(osc_recaptcha_private_key() != '') {
if(!osc_check_recaptcha()) {
osc_add_flash_error_message( _m('The Recaptcha code is wrong') );
$this->redirectTo(osc_base_url(true)."?page=page&id=".Params::getParam('id'));
}
}
}
}
osc_add_hook('init', 'wm_captcha_static_page');
Regards.
@patrickFromCroatia
thank you but your code does not work!
-
I edited the code and it's fully working.
Demo: http://148.251.207.178/osclass/plugins/demo/index.php?page=page&id=23
Regards.
-
|-------------------------|
| EDITED, WORKS! |
|-------------------------|
Hello!
You would need a function that would verify the captcha on that specific page. Something like:
<?php
function wm_captcha_static_page() {
if(Params::getParam('page') == 'page' && Params::getParam('id') == 'YOUR PAGE ID') {
if(osc_recaptcha_private_key() != '') {
if(!osc_check_recaptcha()) {
osc_add_flash_error_message( _m('The Recaptcha code is wrong') );
$this->redirectTo(osc_base_url(true)."?page=page&id=".Params::getParam('id'));
}
}
}
}
osc_add_hook('init', 'wm_captcha_static_page');
Then you need to have a form with some hidden inputs:
<form class="nocsrf">
<input type="hidden" name="page" value="page" /> <!-- IMPORTANT -->
<input type="hidden" name="id" value="23" /> <!-- CHANGE ID! - IMPORTANT -->
<input type="hidden" name="post_page_captcha" value="1" /> <!-- IMPORTANT -->
<?php osc_show_recaptcha('register'); ?>
<button type="submit" value="Submit">Submit</button>
</form>
Regards.
hey patrickFromCroatia
'YOUR PAGE ID' and "23", both i put my page-id but it did not work,
would you please share us your static-page that works with recaptcha?
also i mention that my Permalinks is on. but i also tested with Permalinks off and also did not work!
thanks
-
Did you add that form? I have the exact code on my demo site whose link I provided and it works.
I edited the code and it's fully working.
Demo: http://148.251.207.178/osclass/plugins/demo/index.php?page=page&id=23
Regards.
Regards.
-
Did you add that form? I have the exact code on my demo site whose link I provided and it works.
I edited the code and it's fully working.
Demo: http://148.251.207.178/osclass/plugins/demo/index.php?page=page&id=23
Regards.
Regards.
Yeah i tested that page and it worked!
But unfortunately i couldn't make it.
Would you please share us exactly its code?
Thank you
-
@patrickFromCroatia
i tested your code again, it works!
maybe because i was using your old code,
Thank you very much!