Osclass forums

Support forums => Themes => Bender => Topic started by: rainilson on October 19, 2018, 06:40:04 pm

Title: how to solve reCAPTCHA problem, outside the contact window?
Post 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.
Title: Re: how to solve reCAPTCHA problem, outside the contact window?
Post by: rainilson on October 20, 2018, 05:42:09 pm
Could some friend help me please?  :'(
Title: Re: how to solve reCAPTCHA problem, outside the contact window?
Post by: marius-ciclistu on October 20, 2018, 10:46:44 pm
Increase the sidebar's width or search for captcha tiny code  or something like that.
Title: Re: how to solve reCAPTCHA problem, outside the contact window?
Post by: rainilson on October 22, 2018, 04:49:39 pm
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.
Title: Re: how to solve reCAPTCHA problem, outside the contact window?
Post by: WEBmods on October 22, 2018, 06:57:14 pm
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.
Title: Re: how to solve reCAPTCHA problem, outside the contact window?
Post by: marius-ciclistu on October 22, 2018, 09:18:26 pm
I implemented once a narrow captcha into wp.
Title: Re: how to solve reCAPTCHA problem, outside the contact window?
Post by: rainilson on October 25, 2018, 04:35:09 pm
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?
Title: Re: how to solve reCAPTCHA problem, outside the contact window?
Post by: rainilson on October 25, 2018, 04:36:21 pm
I implemented once a narrow captcha into wp.

How to do that friend?
Title: Re: how to solve reCAPTCHA problem, outside the contact window?
Post by: rainilson on October 30, 2018, 02:37:31 am
please ???
Title: Re: how to solve reCAPTCHA problem, outside the contact window?
Post by: marius-ciclistu on November 01, 2018, 12:08:18 pm
I don't remember. Search in google...
Title: Re: how to solve reCAPTCHA problem, outside the contact window?
Post by: WEBmods on November 01, 2018, 01:49:18 pm
https://stackoverflow.com/questions/28594842/no-captcha-recaptcha-resizing
Title: Re: how to solve reCAPTCHA problem, outside the contact window?
Post by: door on April 14, 2019, 01:18:53 am
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:

Code: [Select]
echo '<div class="g-recaptcha" data-sitekey="' . $siteKey . '"></div>';
and add this tag: data-size="compact" so it looks like this:

 
Code: [Select]
echo '<div class="g-recaptcha" data-sitekey="' . $siteKey . '" data-size="compact"></div>';