Tips and Tricks HQ Support Portal › Forums › WP eMember › WP eMember General Questions › How to edit the not logged in message
Tagged: join today, login, thanks
- This topic has 3 replies, 3 voices, and was last updated 13 years, 11 months ago by
SailorBill.
-
AuthorPosts
-
January 3, 2012 at 1:47 am #5167
SailorBill
MemberWhere do I go to add a space between the sentences in the message that says:
> Please Login to view this Content.(Not a member? Join Today!)
Also when people click the javascript link for “Login”, the pop-up window more often than not on my machines shows up below the fold, of several scrolls down from the current browser view. Anything I can change to move that up into the current view?
Thanks!
January 3, 2012 at 3:04 am #40243Peter
MemberHi,
Regarding the space in the message – this post will help you do that:
https://support.tipsandtricks-hq.com/forums/topic/wp-emember-login-text
Regarding the placement of the popup, you can use to firebug or something similar to find out which element you need to modify. I had a brief look at your site and noticed that something is setting the following which determines your popup position:
element.style {display: block;
left: 533px;
top: 363.9px;
}
You can override the above by entering the following in the eMember_custom_style.css file:
#signin_menu {
left: 33px !important;
top: 63.9px !important;
}
I used some arbitrary values above but you can simply vary the left and top values to suit your needs.
January 3, 2012 at 5:40 am #40244admin
KeymasterYou can also use the customize text option explained here to customize this:
Open the corresponding language file and search for the following line of code:
define("EMEMBER_TO_VIEW_CONTENT", "to view this Content.");When you find it change it to the following which should add the space you want:
define("EMEMBER_TO_VIEW_CONTENT", "to view this Content. ");I will make this change in the plugin’s code too.
This post also has some helpful info on this topic:
January 3, 2012 at 10:05 pm #40245SailorBill
MemberThanks!
-
AuthorPosts
- You must be logged in to reply to this topic.