Support Forum
Hi there,
I want to only use the two buttons of Log In and Register before logging in, and the button of Log Out after logging in. How can I get rid of the other buttons (Profile/Members)?
Most of themes have Statistics on the bottom, how can I remove this?
I will use only one forum in my website so that I don't need "Select Forum" box and the path of "Home/Forum/My Forum Name. How can I remove them?
Thanks and best regards
Jin
most display elements are theme driving with template functions just like in wp...
so if you want to remove an element, just remove the template function that displays it... or you can change the situation under which the element is displayed...
fyi, login changes to logout after logging in... and registration is not available while logged in either..
most of the buttons you are referencing are in the spHead.php template file of your sp theme...
as always, we strongly urge you to make a child sp theme or your own sp theme before making any changes so you dont lose them on updates... for more info on these, see our codex links in sidebar...
as to the breadcrumbs question, see this codex article on the template function for displaying them:
https://simple-press.com/docum.....eadcrumbs/
it shows you how to remove elements via arguments to the template functions... if you dont want any breadcrumbs, just remove the template function from your theme...
Visit Cruise Talk Central and Mr Papa's World
Mr Papa said
most display elements are theme driving with template functions just like in wp...so if you want to remove an element, just remove the template function that displays it... or you can change the situation under which the element is displayed...
fyi, login changes to logout after logging in... and registration is not available while logged in either..
most of the buttons you are referencing are in the spHead.php template file of your sp theme...
as always, we strongly urge you to make a child sp theme or your own sp theme before making any changes so you dont lose them on updates... for more info on these, see our codex links in sidebar...
as to the breadcrumbs question, see this codex article on the template function for displaying them:
https://simple-press.com/docum.....eadcrumbs/
it shows you how to remove elements via arguments to the template functions... if you dont want any breadcrumbs, just remove the template function from your theme...
Many thanks