• You could add it either in the free or premium version.
    1.- add the “login” and “register” in the web that you have [shortcode] to add in pages. with choosing one of the following protections.

    • Google Captcha V2
    • Google Captcha V3
    • CloudFlare Turnstile

    2.- a “shortcode” to “logout” on the web rapid. (the wordpress version asks you if you want to logout sometimes has errors)

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi there!

    I’m not sure exactly what you want to achieve, but to use a ‘shortcode’ for the login and registration form/link supported by WP-Cerber, all you need is an additional plugin and a little trick. Tell me exactly what you want to achieve, and I’ll explain how to do it.
    I believe that Google reCaptcha works seamlessly with WP-Cerber in every version (even the invisible one that doesn’t require user action). You can integrate reCaptcha in AntiSpam -> ReCAPTCHA.

    If you want to protect registration/login form with CF Turnstile, there are plenty of other plugins for that, but indeed, such an option would be beneficial in WP-Cerber.

    If you are experiencing issues with logging out, please paste some logs from the debugger, as it’s difficult to fix anything without such data. Perhaps there’s a conflict with another plugin or template, and adjusting their settings might resolve the problem.

    Thread Starter carlos978

    (@carlos978)

    1.- I just wanted to know if you could add to “wpcerber” a “login” and a “register” for users. by [shortcode].


    2.- wpcerber has its own registration/login (but not in the header)


    3.- at the same time have the security “I am not a captcha robot” with one of these 3 versions to choose from (only one):
    3.1.- Google Captcha V2
    3.2.- Google Captcha V3
    3.3.- CloudFlare Turnstile


    4.- I mentioned it to avoid using another additional plugin and improve the wpcerber login security.

    • This reply was modified 1 year, 1 month ago by carlos978.
    • This reply was modified 1 year, 1 month ago by carlos978.

    @carlos978 you have forgot hCaptcha also

    1 Yes, you can add “login” and “registration” from WP Cerber by shortcode. Here’s how to do it: create a new menu and name it wp-cerber-menu. Add “login” and “registration” from WP-Cerber to this menu and save but don’t place this menu anywhere. Add this code to the functions.php file in your theme folder (remember to use a child theme).

    function wp_cerber_menu_shortcode() {
        ob_start();
        wp_nav_menu( array( 'menu' => 'wp-cerber-menu' ) );
        return ob_get_clean();
    }
    add_shortcode( 'wp_cerber_menu', 'wp_cerber_menu_shortcode' );

    Now use this [wp_cerber_menu] where you want.

    2 I haven’t seen a plugin or any other tool for WP that offered multiple Google reCAPTCHA versions at the same time. It’s simply impractical, and hardly anyone uses it. As I mentioned earlier, if you want a Turnstile, you have to use an additional plugin (you can add the code yourself according to the documentation), because WP Cerber doesn’t conflict with other plugins. I use a extra plugin for 2FA, and WP Cerber works very well for me.

    3 I understand you want to improve WP Cerber, but your issues can be resolved in other ways and don’t require involving a developer.

    • This reply was modified 1 year, 1 month ago by niezmywalny.
    Thread Starter carlos978

    (@carlos978)

    thanks, I will use other plugins

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘you could add these functions to wp cerber’ is closed to new replies.