Remove logout button – UserPro Forums https://forum.userproplugin.com/forums/topic/remove-logout-button/feed/ Mon, 06 May 2024 04:55:41 +0000 https://bbpress.org/?v=2.6.2 en-US https://forum.userproplugin.com/forums/topic/remove-logout-button/#post-35911 <![CDATA[Remove logout button]]> https://forum.userproplugin.com/forums/topic/remove-logout-button/#post-35911 Sat, 03 May 2014 09:57:57 +0000 Lucas Atkins Hi,

I have a dedicated logout button on my theme already. How is it possible to remove the logout button on UserPro?

Thanks!

]]>
https://forum.userproplugin.com/forums/topic/remove-logout-button/#post-35912 <![CDATA[Reply To: Remove logout button]]> https://forum.userproplugin.com/forums/topic/remove-logout-button/#post-35912 Sat, 03 May 2014 10:24:05 +0000 Do you mean the logout button that appears on the top right of the profile page? If so, I hid this button with the following CSS but there may be a way to remove it from the template. I added display:none to the following CSS code:

div.userpro-centered div.userpro-profile-icons.top {
position: absolute;
top: 15px;
right: 15px;
display: none;
}

]]>
https://forum.userproplugin.com/forums/topic/remove-logout-button/#post-35915 <![CDATA[Reply To: Remove logout button]]> https://forum.userproplugin.com/forums/topic/remove-logout-button/#post-35915 Sat, 03 May 2014 11:37:30 +0000 Lucas Atkins @peem Thanks! Works perfectly.

]]>
https://forum.userproplugin.com/forums/topic/remove-logout-button/#post-35916 <![CDATA[Reply To: Remove logout button]]> https://forum.userproplugin.com/forums/topic/remove-logout-button/#post-35916 Sat, 03 May 2014 11:44:02 +0000 No problem Lucas, do you use Google DevTools? If not when using chrome right click on an element on the page (e.g logout button) then select inspect element. This will bring up the CSS code that effects that particular element so you can see what to change. Very useful tool which everyone should use!

]]>
https://forum.userproplugin.com/forums/topic/remove-logout-button/#post-35922 <![CDATA[Reply To: Remove logout button]]> https://forum.userproplugin.com/forums/topic/remove-logout-button/#post-35922 Sat, 03 May 2014 12:19:50 +0000 admin The easiest way is to inspect element, and hide it with display: none in your custom css setting.

]]>