• Resolved soulwaretech

    (@soulwaretech)


    Good morning wonderful people,

    We have an issue that users can’t login when Wordfence Login Recaptcha v3 is enabled.

    Unable to login. Switched it to testing mode and then can sign in.

    Please can you fix this or get in touch with Wordfence to rectify this.

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author iova.mihai

    (@iovamihai)

    Hey @soulwaretech,

    Thank you for reaching out and for letting us know about this issue! Considering Wordfence is widely used, we will look into the issue as soon as possible. Once we find a fix we will be releasing an update to SliceWP.

    Thank you once again for reporting this!

    Best wishes,
    Mihai

    Thread Starter soulwaretech

    (@soulwaretech)

    Thank you guys for the quick response I have a secondary issue. Creative codes when posted on other sites do not load an image. In source the code is there but image size shows its 1×1 pixel.

    Should I open its own support thread?

    Plugin Author iova.mihai

    (@iovamihai)

    Hey @soulwaretech,

    Usually we recommend users to open a separate ticket for each issue.

    Considering this is a public forum, it’s easier for other users to navigate existing topics and possibly find the solution they are looking for.

    Also, I saw you already opened a new ticket. I just responded to it.

    Thank you and best wishes,
    Mihai

    Thread Starter soulwaretech

    (@soulwaretech)

    Thanks, guys. Do you know if the wordfence recaptcha issue with Slice WP has been sorted?

    Plugin Author iova.mihai

    (@iovamihai)

    Hey @soulwaretech,

    We’ve been looking into this issue this week, but unfortunately, there isn’t a clean workaround for it. Wordfence’s reCAPTCHA system is relatively closed and we couldn’t find a way to extend it to SliceWP. We’ll be looking into it more.

    Until we have a proper solution, the only thing I can recommend is that you add this code to your website:

    function slicewp_custom_wordfence_ls_require_captcha( $required ) {
    	
    	if ( empty( $_POST['slicewp_token'] ) )
    		return $required;
    	
    	if ( ! wp_verify_nonce( $_POST['slicewp_token'], 'slicewp_login_affiliate' ) )
    		return $required;
    	
    	return false;
    	
    }
    add_filter( 'wordfence_ls_require_captcha', 'slicewp_custom_wordfence_ls_require_captcha' );

    You can add custom code to your website using the Code Snippets plugin (https://www.ads-software.com/plugins/code-snippets/).

    The code disables Wordfence’s reCAPTCHA verification on the SliceWP login form (only on SliceWP’s login form).

    Because Wordfence’s verification won’t be made on our login form, your affiliates will be able to log into their account.

    We will also be adding reCAPTCHA support to our own login forms natively, the same as we do with the affiliate registration form. In the next SliceWP plugin update, if you have reCAPTCHA enabled in SliceWP, the reCAPTCHA widget will be added to the login form as well. Currently it works only for the affiliate registration form.

    With both the above custom code and the reCAPTCHA option from SliceWP, you will be protected and your affiliates will be able to log in without seeing any errors.

    Thank you and best wishes,
    Mihai

    Thread Starter soulwaretech

    (@soulwaretech)

    Thank you for looking into it. Thank you for this solution!

    Plugin Author iova.mihai

    (@iovamihai)

    Hey @soulwaretech,

    No worries whatsoever! Happy to help if I can. If you have any additional questions or face any issues, please open a new ticket and I’ll get back to you as soon as possible.

    Thank you and best wishes,
    Mihai

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Login issue site with Wordfence’ is closed to new replies.