Notifications
Clear all

Limited Support

Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.

 

Style [Closed] disable sidebar and statistic on login and register

2 Posts
2 Users
1 Reactions
1,418 Views
olpo24
Posts: 11
Topic starter
(@olpo24)
Eminent Member
Joined: 4 years ago

Hi,

is there any way to disable the sidebar and the statistic form login an registration page?

Kind regards,

Ole

1 Reply
Posts: 990
Moderator
(@martin)
Support Team
Joined: 9 years ago

Hi @olpo24,

Insert this CSS code in Dashboard > Forums > Settings > Styles > Custom CSS Code textarea, save it, delete all caches, go to forum front-end and press Ctrl+F5:

#wpforo-wrap.wpft-login .wpforo-content,
#wpforo-wrap.wpft-register .wpforo-content{
    width: 100%!important;
}
#wpforo-wrap.wpft-login .wpforo-right-sidebar,
#wpforo-wrap.wpft-register .wpforo-right-sidebar{
    display:none!important;
}
#wpforo-wrap.wpft-login  #wpforo-footer,
#wpforo-wrap.wpft-register  #wpforo-footer{
   display:none!important;
}