I resolved it finally. If others out there have the same problem just blank your sidebars with this code:
<div id=”sidebar”>
<?php if ( function_exists(‘dynamic_sidebar’) && dynamic_sidebar(‘Sidebar Top’) ) : else : ?>
<?php endif; ?>
<div class=”left”>
<?php if ( function_exists(‘dynamic_sidebar’) && dynamic_sidebar(‘Sidebar Left’) ) : else : ?>
<?php endif; ?>
</div>
<div class=”right”>
<?php if ( function_exists(‘dynamic_sidebar’) && dynamic_sidebar(‘Sidebar Right’) ) : else : ?>
<?php endif; ?>
</div>
<br class=”clear” />
</div>
After you’ve done so, go to customizer under your layout section and set increase the with of your maincontent to 100%.
There you go 🙂
Where does this code go? I tried putting it in sidebar.php and in the page itself and neither worked.
I’d really like to get rid of the sidebar on all pages without buying the premium upgrade
Thanks in advance
You put it on your widgets page under first sidebar. Just put a text block there, and copy/paste.