- This topic has 1 reply, 2 voices, and was last updated 6 years, 8 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eStore Forum › Fancy Login Widget/Popup – how to remove "Forgot Password?" and "Join Us" links
Tagged: css, customization, wp membership
Our members all logging in using the same credentials we supply. We do not want the to have access to change the password or request a reset. We also do not want them to register. I have removed the Forgot Password and Join Us links from everywhere visible except the Fancy Login Widget/Popup. Can you please tell me how to remove them from this widget?
You can add the following custom CSS in your site to hide the forgot password and join us links from the fancy login popup:
.forgot_pass_link {
display: none;
}
#emember_forgot_pass{
display: none;
}
#join_us{
display: none;
}