Mar 13, 2019 1:51 am
Hello, I would like to know in what file of the wpForo system are the configurations of the sidebar
1 Reply
Mar 15, 2019 7:45 am
Hi @hector,
wpForo Sidebar is just a wrapper div for widgets, there is no file for that. It's a regular WordPress sidebar and can found in Dashboard > Appearance > Widgets admin page. It's loaded in/wpforo/wpf-themes/classic/index.php with according function:
<?php if (is_active_sidebar('forum-sidebar')) : ?>
<div class="wpforo-right-sidebar">
<?php dynamic_sidebar('forum-sidebar') ?>
</div>
<?php endif; ?>