As you may have noticed, you have a block called Sidebar, to modify this SideBar, you just have to modify your theme.
My theme was done with Boostrap which implements the task,
Go in Appearance> Editor> Edit single.php
Before:
<section id="section-block" class="site-content">
<div class="container">
<div class="row">
<!--Blog Posts-->
<?php
echo '<div class="col-md-'.( !is_active_sidebar( "sidebar-primary" ) ?"12" :"8" ).' col-xs-12">';
?>
After :
<section id="section-block" class="site-content">
<div class="container">
<div class="row">
<!--Blog Posts-->
<?php // echo '<div class="col-md-'.( !is_active_sidebar( "sidebar-primary" ) ?"12" :"8" ).' col-xs-12">'; ?>
<?php echo '<div class="col-md-12 col-xs-12">'; ?>
<?php
/*
* if ( is_active_sidebar( 'sidebar-primary' ) ): ?>
<div class="col-md-4 col-sm-4 col-xs-12">
<div class="sidebar" >
<?php dynamic_sidebar( 'sidebar-primary' ); ?>
</div>
</div>
<?php endif;
*/
?>
I put everything in the comment, so that the side is not displayed!