- This topic has 3 replies, 3 voices, and was last updated 12 years, 10 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 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 eMember › WP eMember General Questions › How to edit the not logged in message
Tagged: join today, login, thanks
Where 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!
Hi,
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.
You 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:
Thanks!