• Hello

    I am using LOVECRAFT.

    Got a little problem……..

    I got tired of getting spam comments to my pages, on my website.

    So, I installed the Google Captcha plugin.

    It works well. But the problem is : the captcha itself is hidden beneath the “POST COMMENT” button on each page.

    I have tried to modify the comments-block (for example: by shifting the post-comment button a couple of rows down). But, to do this, I need to find it first.

    Every google search has produced the same thing:

    (a) Go to WP CONTENT

    (b) Go to your theme

    (c) Open the “comment.php” file

    (d) look for the “Post Comment” button.

    This does not work, of course, because, although every other field is there in this file (name, email, comment, etc), for some reason, the POST COMMENT button itself is not there.

    Where can I find it? Not sure if I can shift the Captcha Plugin itself; so my only option is to find this button, and try to shift it down a bit.

    From what I gather, the Comment Form is generated by the comment_form function.

    Here is my URL : http://www.stephenavae.com

    Thanks

Viewing 1 replies (of 1 total)
  • @stephenavae – I looked at your site and you should be able to fix it with something like this in you custom css / child theme:

    .form-submit {
        f-loat: left;
        display: block;
            
        
    
    }
    .gglcptch_recaptcha {
            width: 100%;
       float: left;
        margin-bottom: 25px;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Google Captcha now hidden under “POST COMMENT” button’ is closed to new replies.