Jump to content

how to hide protected by reCAPTCHA


HOSKIA INDIA

Recommended Posts

  • 5 weeks later...

if you were using Six, then it would be in the  /templates/six/css/custom.css file... but because you're using ClientX, i've no idea - looking at your site source code, there doesn't seem to be an equivalent custom.css file in that template, so you might need to contact WGS to see which existing file you should edit (if indeed they think you should).

ultimately, you could do it as a hook if that is easier for your circumstances.

<?php

function hide_google_recaptcha_logo_css_hook($vars) {
	
	return '<style>.grecaptcha-badge {visibility: hidden;}</style>';
	
}
add_hook("ClientAreaFooterOutput", 1, "hide_google_recaptcha_logo_css_hook");
?>
Edited by brian!
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated