Hey @horizondigital
Sorry for the delay response.
For you to get rid of the sidebar that appears beneath the single properties and archive property pages, you have to go to navigate to .../wp-content/plugins/essential-real-estate/public/templates
and edit these two files
archive-propeprty.php and single-property.php.
On archive-propeprty.php, go to the line 234 and comment out this line of code
do_action('ere_sidebar_property');
to become
// do_action('ere_sidebar_property');
Then on single-property.php, go to line 31 and comment out the same line of code
do_action('ere_sidebar_property');
to become
// do_action('ere_sidebar_property');
NOTE: This code will be over write whenever you update the plugin. So, you have to manually update that line of code. To position the sidebar to its position, you will need to find the right <div> class
that positions your blog and page content and use it on those files as I did on my site
Until I find how to push the plugin template file to my child team template section, I have to manually edit those files anytime the plugin is updated.