Hi,
If you do not want to display the sidebar on
your site, please do the following:
1. Find the functions.php file in the Central theme folder and
open it with any text editor (e.g. Sublime Text).
2. Find the line 173, with the following code:
‘id’ => ‘sidebar’,
and change it with:
‘id’ => ‘sidebar-1’,
3. Save the changes.
4. Find the sidebar.php file in your theme folder.
5. Delete all contents of this file and insert the following code instead:
<?php if ( is_active_sidebar( ‘sidebar-1’ ) ) { ?>
<div class=”widget-area” role=”complementary”>
<?php dynamic_sidebar( ‘sidebar-1’ ); ?>
</div><!– #primary-sidebar –>
<?php } ?>
6. Save the changes in the file.
After that, if you will need to display the
sidebar on the site, add at least one widget in the sidebar “sidebar” in the Appearance-> Widgets menu of your Dashboard. If sidebar
display site is not necessary, remove all widgets from the sidebar
“sidebar” in the Appearance-> Widgets menu.
Regards,
BestWebSoft Support Team