• Resolved mixedcir

    (@mixedcir)


    Hi,

    The plugin is working but the Log In button is missing. I also tried to install Login Designer and changed the theme to 2022 but this did not work. Is there a way to get the button working? Thanks.

    The page I need help with: [log in to see the link]

Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Support M Haseeb

    (@haseeb0001)

    @mixedcir Hi,

    I hope you are doing well.

    Please share the screenshot of this issue.

    Thanks

    Thread Starter mixedcir

    (@mixedcir)

    Sure. Thank you for looking into this. The rest of the page is just white.

    Plugin Support M Haseeb

    (@haseeb0001)

    Please share the video of the Login designer Button style section, I need to see the settings of the Login designer button.

    Let me know which theme you are using ?

    Thread Starter mixedcir

    (@mixedcir)

    I think you mean under Appearance -> Password Protected -> Button Styles? As you can see in this view the “Remember Me” checkbox and the login button are visible but not on the final page.

    https://youtu.be/gq8ZLRz0V1A

    I am using the theme “The Minimal”. https://wordpress.org/themes/the-minimal/

    Plugin Support M Haseeb

    (@haseeb0001)

    Hi @mixedcir

    Because of ionos-sso plugin then login button is not visible.

    Disable the plugin ionos-sso to use the Password Protected button or put this code in your child themes function.php file.

    function wpexperts_show_password_protected_submit_button() { echo '<style> input#wp-submit { display: block !important; } </style>'; } add_action( 'password_protected_login_head', 'wpexperts_show_password_protected_submit_button' );

    See the screenshot and video here.

    Thanks

    Thread Starter mixedcir

    (@mixedcir)

    Thanks @haseeb0001
    Both solutions are working fine. One last thing. The Remember Me checkbox is still missing. Can you give me the code for the function.php file for this element? From your video I could probably figure it out by myself but I have honestly no experience with web development.

    Plugin Support M Haseeb

    (@haseeb0001)

    @mixedcir Hi,

    Replace code with the below one and then test it and let me know.

    function wpexperts_show_password_protected_submit_button() { echo ‘<style> input#wp-submit, .forgetmenot { display: block !important; } </style>’; } add_action( ‘password_protected_login_head’, ‘wpexperts_show_password_protected_submit_button’ );

    Thanks

    Thread Starter mixedcir

    (@mixedcir)

    Hi @haseeb0001 ,
    I had to change with ' but after that the code works.
    Thank you for the great support!

    Plugin Support M Haseeb

    (@haseeb0001)

    @mixedcir You’re welcome.

    We would appreciate a kind and honest review.

Viewing 9 replies - 1 through 9 (of 9 total)

The topic ‘Log in button missing’ is closed to new replies.