• Hi All,

    Ive read many links but i cant find out how to remove the following of certain posts/pages

    Search
    Navigation – mainpage/news/services/contacts
    Archives
    Meta – site admin/log out

    I dont have these options in my widgets, so i cant understand where to remove them…

    An example page is – http://www.jennifermolloy.co.uk/what-i-treat/

    I would really appreciate nay help

    thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • Have you checked your active theme’s sidebar.php file?

    Thread Starter Robertmolloy999

    (@robertmolloy999)

    Hi Ranjesh,

    Thanks for replying.

    I just had a look and can see the following:

    <aside id="sidebar" class="grid_4 <?php if (of_get_option('blog_sidebar_pos')=='right') { echo 'prefix_1'; } else { echo 'suffix_1'; } ?>">
    	<?php if ( ! dynamic_sidebar( 'Sidebar' )) : ?>
    
    		<div id="sidebar-search" class="widget">
    			<h3>Search</h3>
    			<?php get_search_form(); ?> <!-- outputs the default WordPress search form-->
    		</div>
    
    		<div id="sidebar-nav" class="widget menu">
    			<h3>Navigation</h3>
    			<?php wp_nav_menu( array('menu' => 'Sidebar Menu' )); ?> <!-- editable within the WordPress backend -->
    		</div>
    
    		<div id="sidebar-archives" class="widget">
    			<h3>Archives</h3>
    
    <ul>
    				<?php wp_get_archives( 'type=monthly' ); ?>
    			</ul>
    		</div>
    
    		<div id="sidebar-meta" class="widget">
    			<h3>Meta</h3>
    
    <ul>
    				<?php wp_register(); ?>
    
    <li><?php wp_loginout(); ?></li>
    				<?php wp_meta(); ?>
    			</ul>
    		</div>
    
    	<?php endif; ?>
    </aside><!--sidebar-->

    [Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]

    Does this make any sense, or do you know what i need to do to block these sections?

    Thanks

    Yes it makes sense. This is the file that displays the content that you do NOT want to be shown.

    Read: http://codex.wordpress.org/Child_Themes on how you can make changes to this file (or keep it blank to remove everything this file shows).

    Thread Starter Robertmolloy999

    (@robertmolloy999)

    Thanks for your help.

    You’re welcome.

    Good luck!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Removing navigation – meta – archives’ is closed to new replies.