• Resolved CCBoom

    (@ccboom)


    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

    (@acosmin)

    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

    (@ccboom)

    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.