1 Reply
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; ?>