Tips and Tricks HQ Support Portal › Forums › WP eMember › WP eMember Tweaks › remove "join now" verbiage and links
- This topic has 6 replies, 3 voices, and was last updated 13 years, 1 month ago by CarlW.
-
AuthorPosts
-
September 8, 2011 at 5:00 pm #4268nategarrettMember
I’m creating a site for a client who wants only a select few people to have access to his members only page. Where can I remove the “join now” from:
a. the plugin
b. the protected page i’ve created where it says “(not a member? join today)”, when not logged in.
I was advised to do this in the language file but that unfortunately did not help my situation it only changed the text and I would like it fully removed.
I was able to remove the text from the plugin however the little arrow next to where the text use to be remains and looks as if something is clearly missing.
I’m sure this is in a php file somewhere just not sure where to look?
Any help on this would be great. Thank you!
September 9, 2011 at 1:02 am #36426adminKeymasterThe “Join Us” page is an integral part of eMember (all membership plugins need a join us page to function). So there is no option to turn off the join us page without modifying the code but the following might be an easier workaround for you:
Simply state something like the following on the “Join Us” page:
The membership on this site is private and can only be created by the admin ....
To remove the following message:
Please Login to view this Content.(Not a member? Join Today!)
Search for the following function in the “eMember_auth_utils.php” file:
get_login_link
Once you find it add the following line as the first line of this function:
return "";
If you wanted to customize the “Join Now” text, you can do so by following this method:
September 27, 2011 at 11:18 am #36427CarlWMemberI think I’m having the same problem as Nategarrett but I’m not sure. So just to make sure….
The site I’m building is an ‘invitation only’ membership site. I don’t mind having a “join Us” page (i just keep it under the radar) but I do mind having a link to that page in the login form cause it creates the false illusion that anybody can registrar.
Is there a way I can have that link removed like you can remove the “Please Login to view et cetera” as mentioned above.
Thanks,
C
September 28, 2011 at 6:40 am #36428adminKeymasterWill it be okay if I tell you how you can tweak to code so it doesn’t show the “join us” link in the login widget of eMember?
September 28, 2011 at 7:07 am #36429CarlWMemberI’m pretty sure that will help.
September 28, 2011 at 11:25 pm #36430adminKeymasterOpen the “eMember_auth_utils.php” file and look inside the “show_login_form” function. Basically, search for the following line of code in this file and remove it:
<td colspan="2">» <a id="register" class="register_link" href="<?php echo $join_url; ?>"><?php echo EMEMBER_JOIN_US;?></a></td>
September 29, 2011 at 7:51 pm #36431CarlWMemberThanks Key, that helped. It even helped me find some other ‘Join Us” links I want removed.
C.
-
AuthorPosts
- You must be logged in to reply to this topic.