- This topic has 4 replies, 3 voices, and was last updated 9 years ago by .
Viewing 5 posts - 1 through 5 (of 5 total)
Viewing 5 posts - 1 through 5 (of 5 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 › eMember – Customize sidebar (remove "Your Account Expires" field)
Tagged: css, customize login, login, login widget, Tweaks
Hello
I would like to hear how I could customize the sidebar? I would like to remove the field “Your Account Expires:”, but still have: “You are logged in as:”, “Your membership level is:” and “Your Account Status:”.
How can I do that?
Do the following to hide the user’s expiry field from the login widget.
1) Grab the custom CSS tweaks plugin from here:
http://www.tipsandtricks-hq.com/wordpress-custom-css-plugin-6413
2) Then add the following CSS code in there to hide those info form the login widget:
.eMember_logged_user_expiry{
display: none;
}
The following post has similar tweaks like this:
https://support.tipsandtricks-hq.com/forums/topic/editing-wp-emember-login-widget
THANKS A LOT!
It worked perfectly!
Asger Ravn
Is there similar CSS code to remove the membership level or account status?
Disregard my previous post. I was able to do this with the custom CSS:
.eMember_logged_user_expiry{
display: none;
}
.eMember_logged_in_account_status{
display: none;
}
.eMember_logged_in_level{
display: none;
}