Jun 22, 2021 9:23 am
Hi,
is there any way to disable the sidebar and the statistic form login an registration page?
Kind regards,
Ole
1 Reply
Jun 22, 2021 9:38 am
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;
}