• Resolved thamer33238

    (@thamer33238)


    Hello,
    I tried to add phone field on registration form and I did, but it’s not supported from my SMS verification plugin because they must use a the default registration form or custom one.
    I thought of hiding current signup and login form the header and add my new button.
    Can I hide the login or signup buttons, or both of them from the header? because I want to use customized signup and login page using phone verification

    Any help or suggestion would be helpful

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

    (@mgordon7)

    Hello,

    The default login/registration form of the plugin can be deactivated with custom CSS. You can use custom CSS under the appearance -> customize -> CSS section. For example;

    body .stm-lms-wrapper.stm-lms-wrapper__login div#stm-lms-register {
        display: none;
    }
    
    body .stm-lms-wrapper.stm-lms-wrapper__login div#stm-lms-login {
        position: relative;
        left: 300px;
    }
    
    body .modal-content .modal-body ul li:nth-child(2) {
        display: none;
    }

    Cheers

    Thread Starter thamer33238

    (@thamer33238)

    Thank you for your response,

    This did hide the registration form, but didn’t hide login form and the buttons

    Also when clicking on the login button the popup still appears.

    Please help

    Plugin Support EricStylemixThemes

    (@ericstylemixthemes)

    Hello @thamer33238

    Can you provide the link for your website, so we could provide proper CSS rules to hide the login form?

    Kind regards

    Thread Starter thamer33238

    (@thamer33238)

    Thread Starter thamer33238

    (@thamer33238)

    The code hides the registration form which is good and helped me a lot.

    How can I change the sign-up button in the header to a specific registration URL

    Thanks

    Thread Starter thamer33238

    (@thamer33238)

    Never Mind
    I solved the problem myself

    Thanks again for your time

    Plugin Support mgordon7

    (@mgordon7)

    Hello,

    We are glad that you have already solved the case on your own

    All the best

    body .stm-lms-wrapper.stm-lms-wrapper__login div#stm-lms-register {
    display: none;
    }

    body .stm-lms-wrapper.stm-lms-wrapper__login div#stm-lms-login {
    position: relative;
    left: 300px;
    }

    body .modal-content .modal-body ul li:nth-child(2) {
    display: none;
    }
    —————————————————————————

    This did hide the registration form, but didn’t hide login form and the buttons
    
    Also when clicking on the login button the popup still appears.
    
    Please help
    Plugin Support EricStylemixThemes

    (@ericstylemixthemes)

    Hello @jcidone,

    Thank you for reaching out!

    By default, there is no option to hide the Login/register pop-up window completely. When guest users try to enroll in the course that pop-up window appears. We can hide the register section from the window. Can you please share the link for your website, so we provide CSS rules properly?

    Kind regards
    Eric Hardy

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

The topic ‘hide login button’ is closed to new replies.