Osclass forums
Support forums => Themes => Bender => Topic started by: rainilson on October 19, 2018, 06:40:04 pm
-
Hi everyone, can anyone help me, how to solve problem and reCAPTCHA, outside the conatato window?
below I left a picture of the problem.
-
Could some friend help me please? :'(
-
Increase the sidebar's width or search for captcha tiny code or something like that.
-
Increase the sidebar's width or search for captcha tiny code or something like that.
I do not want to touch the width of the sidebar.
and I could not find the reCAPTCHA code.
-
Hello,
Use Inspect Element tool to find the ID/class of the reCAPTCHA window, adjust and copy the CSS code and paste it in your theme's CSS file.
Regards.
-
I implemented once a narrow captcha into wp.
-
Hello,
Use Inspect Element tool to find the ID/class of the reCAPTCHA window, adjust and copy the CSS code and paste it in your theme's CSS file.
Regards.
Could you show me how to make a friend, please?
-
I implemented once a narrow captcha into wp.
How to do that friend?
-
please ???
-
I don't remember. Search in google...
-
https://stackoverflow.com/questions/28594842/no-captcha-recaptcha-resizing
-
The easiest solution is to use a tag provide by Google reCaptcha that sets it to compact mode. It will change the reCaptcha box from a rectangle to a small square box, reducing the width
Edit the file:
yourdomain.com/oc-includes/osclass/helpers/hUtils.php
Find this line:
echo '<div class="g-recaptcha" data-sitekey="' . $siteKey . '"></div>';
and add this tag: data-size="compact" so it looks like this:
echo '<div class="g-recaptcha" data-sitekey="' . $siteKey . '" data-size="compact"></div>';