- This topic has 5 replies, 2 voices, and was last updated 10 years, 7 months ago by .
Viewing 6 posts - 1 through 6 (of 6 total)
Viewing 6 posts - 1 through 6 (of 6 total)
- You must be logged in to reply to this topic.
WordPress Membership Plugin
Simple Membership Plugin › Forums › Simple Membership Plugin › Removal of Join Us link
I am using Divi theme with wordpress. It has its own custom CSS entry point. I put the CSS codes to remove Forgot Password and Join Us link. Forgot Password link was removed immediately, but Join Us remained. Then as per the documentation page, I downloaded WP Custom CSS plugin & tried it as per instruction provided. But still the Join Us link remains. Can anyone help me out of this situation?
Hi, are you referring to the login widget or a page?
Can you share the css code you are using?
Can you also share your URL?
The site is http://comcomsol.in. The home page is the member login page itself. Just below the login button, there is a Join Us link. I need to remove the link. From the Simple Membership forum, I got two sets of CSS codes. The link of the page is https://simple-membership-plugin.com/?s=forgot. The code for removal of Join Us button is as following:
.swpm-login-widget-form .register_link {
display: none;
}
The code is still in place, but not having any effect.
Hi, I tried to check your URL but it would not open. Can you provide the correct URL.
Thank you
The site is http://comcomsol.in
It is opening a little bit slow, I don’t know why.
Regarding the Join Us link removal, I found one comment in a forum, that states login.php can be edited to remove the link, but every time the plugin gets updated, that login.php needs to be re-edited. It feels like a hassle, unless something can be done in child theme. But I have got no idea how a child theme can effect working of an external plugin which is not a inbuilt feature of wordpress.
Hi try the following custom code.
.swpm-join-us-link a {
display: none;
}
If the above does not work try the following.
.swpm-join-us-link {
display: none;
}