Title: Mini-Sidebar Surpress Home Page item, Archives, Calendar (Browse)
Last modified: August 22, 2016

---

# Mini-Sidebar Surpress Home Page item, Archives, Calendar (Browse)

 *  Resolved [CCBoom](https://wordpress.org/support/users/ccboom/)
 * (@ccboom)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/mini-sidebar/)
 * How to suppress the Archives and Calender display please?
 * Also how to suppress the “Main Page” link from appearing. (looks out of place
   under the Menu heading along with other actual menu itmes)
    And the logo already
   goes back to the home page and we can also add an item to a menu if it is desired…
   a widget with HTML text etc etc.
 * Nice to haves: In the Footer – either HTLM formmated text (for links) would be
   great, or a widget area bottom right corner or footer.
 * Thanks in advance

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

 *  Theme Author [acosmin](https://wordpress.org/support/users/acosmin/)
 * (@acosmin)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/mini-sidebar/#post-5445116)
 * Wehn you say suppress you mean remove?
 * If yes, open “sidebar-browse.php” and find:
 * `wp_nav_menu( array( 'container' => '', 'theme_location' => 'mini-first', 'items_wrap'
   => '<ul class="normal-list"><li class="'. $page_state .'"><a href="'. esc_url(
   home_url() ) .'" title="'. __('Go Home', 'acosmin') .'">'. __('Main Page', 'acosmin').'
   </a></li>%3$s</ul>' ) );`
 * replace with:
 * `wp_nav_menu( array( 'container' => '', 'theme_location' => 'mini-first', 'items_wrap'
   => '<ul class="normal-list"><li class="'. $page_state .'"></li>%3$s</ul>' ) );`
 * To remove Archives and Calendar delete these lines:
 *     ```
       <aside class="side-box">
       		<h3 class="sidebar-heading"><?php _e( 'Archives', 'acosmin' ); ?></h3>
       		<nav class="sb-content clearfix">
       			<ul class="normal-list">
       				<?php wp_get_archives( array( 'type' => 'monthly', 'limit' => 12 ) ); ?>
       			</ul>
       		</nav><!-- END .sb-content -->
       	</aside><!-- END .sidebox -->
   
           <div class="side-box larger">
           		<h3 class="sidebar-heading"><?php _e( 'Calendar', 'acosmin' ); ?></h3>
                   <div class="sb-content clearfix">
                   	<?php get_calendar(true); ?>
       		</div><!-- END .sb-content -->
       	</div><!-- END .sidebox -->
       ```
   
 *  Thread Starter [CCBoom](https://wordpress.org/support/users/ccboom/)
 * (@ccboom)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/mini-sidebar/#post-5445191)
 * Thanks!

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

The topic ‘Mini-Sidebar Surpress Home Page item, Archives, Calendar (Browse)’ is
closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/justwrite/2.0.3.6/screenshot.png)
 * JustWrite
 * [Support Threads](https://wordpress.org/support/theme/justwrite/)
 * [Active Topics](https://wordpress.org/support/theme/justwrite/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/justwrite/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/justwrite/reviews/)

## Tags

 * [calendar](https://wordpress.org/support/topic-tag/calendar/)
 * [mini sidebar](https://wordpress.org/support/topic-tag/mini-sidebar/)

 * 2 replies
 * 2 participants
 * Last reply from: [CCBoom](https://wordpress.org/support/users/ccboom/)
 * Last activity: [11 years, 6 months ago](https://wordpress.org/support/topic/mini-sidebar/#post-5445191)
 * Status: resolved