Notifications
Clear all

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

2 Posts
2 Users
1 Reactions
1,213 Views
olpo24
Posts: 11
Topic starter
(@olpo24)
Eminent Member
Joined: 3 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: 988
Moderator
(@martin)
Support Team
Joined: 8 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;
}