Notifications
Clear all

[Closed] In what file can I modify the sidebar

2 Posts
2 Users
0 Likes
1,094 Views
Posts: 108
Topic starter
(@hector)
Estimable Member
Joined: 5 years ago

Hello, I would like to know in what file of the wpForo system are the configurations of the sidebar

Topic Tags
1 Reply
Robert
Posts: 10503
Admin
(@robert)
Support Team
Joined: 8 years ago

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