Title: Help with website
Last modified: August 22, 2016

---

# Help with website

 *  [mjmangum](https://wordpress.org/support/users/mjmangum/)
 * (@mjmangum)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/help-with-website-3/)
 * On my site, [http://www.naturallyemms.com](http://www.naturallyemms.com), on 
   every page except the home page on the right of the page there is archives and
   meta. How do I get these off of the pages? The name of the theme I am using is
   Unite.

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [Niklas](https://wordpress.org/support/users/niklasbr/)
 * (@niklasbr)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/help-with-website-3/#post-5266542)
 * In the unite folder you should have a file called “sidebar.php”, open it and 
   you will find code that looks like this:
 *     ```
       <?php if ( ! dynamic_sidebar( 'sidebar-1' ) ) : ?>
   
       			<aside id="search" class="widget widget_search">
       				<?php get_search_form(); ?>
       			</aside>
   
       			<aside id="archives" class="widget">
       				<h1 class="widget-title"><?php _e( 'Archives', 'unite' ); ?></h1>
       				<ul>
       					<?php wp_get_archives( array( 'type' => 'monthly' ) ); ?>
       				</ul>
       			</aside>
   
       			<aside id="meta" class="widget">
       				<h1 class="widget-title"><?php _e( 'Meta', 'unite' ); ?></h1>
       				<ul>
       					<?php wp_register(); ?>
       					<li><?php wp_loginout(); ?></li>
       					<?php wp_meta(); ?>
       				</ul>
       			</aside>
   
       		<?php endif; // end sidebar widget area ?>
       ```
   
 * As you can see there are three <aside> elements, one search, one archive, and
   one meta. These three are only visible if you have added no widgets in the sidebar.
   In other words, it is the default content. Change it to something like this if
   you want it empty:
 *     ```
       <?php if ( ! dynamic_sidebar( 'sidebar-1' ) ) : ?>
       		     <!-- everything inside the if clause has been removed -->
       		<?php endif; // end sidebar widget area ?>
       ```
   
 *  Thread Starter [mjmangum](https://wordpress.org/support/users/mjmangum/)
 * (@mjmangum)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/help-with-website-3/#post-5266543)
 * Thanks I will try that

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Help with website’ is closed to new replies.

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 2 replies
 * 2 participants
 * Last reply from: [mjmangum](https://wordpress.org/support/users/mjmangum/)
 * Last activity: [11 years, 11 months ago](https://wordpress.org/support/topic/help-with-website-3/#post-5266543)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
