• How do you remove the left and side bard titles on the Neoclassical/or any other theme

    Example:

    Left column – how to do you remove the word ‘NAVIGATION’ above the Home/About/ETC.. buttons?

Viewing 6 replies - 1 through 6 (of 6 total)
  • can you post your url so that we see what you talking about

    Thread Starter khaus

    (@khaus)

    Thank you for your response.
    The URL is:
    https://w2wp.org/the-facts/

    The text I’m trying to remove is on the left column and says ‘Remove this Title’

    I would do this one of two ways . . .

    Log in and go to your admin panel. Look on the left for “Appearance”. Just under that you will click on “Widgets”. That widget looks like the “Pages” widget. Look to the right on what is probably “Sidebar 1” and click on the little light color arrow on the right side. This opens up that widgest area. Do you see a widget that might refer to what we are taking about? If there is nothing then the widget is coded into your theme’s sidbar.php. In this case go to the directory where your wordpress is installed. Go to . . .
    /domains/yourdomainname.com/public_html/wp-content/themes/Neoclassical and look for a file called something like sidebar.php or somethingbar.php. Open it and look through the code and find what probably looks something like . . .
    <h2>Remove this Title</h2>
    or
    <h1>Remove this Title</h1>
    You can delete this and it will not hurt anything. As a matter of fact, you can delete that entire “page” section as you can use the widget that I previously mentioned.

    Thread Starter khaus

    (@khaus)

    Hi,
    Through the Admin> Appearances> Widget> Sidebar> Pages – Removing the ‘Title’ text results in the title ‘Pages’

    on the Sidebar.php page, I’ve tried removing the code, but that results in an error ??

    <div id="left_bar" class="sidebar">
    	<ul class="sidebar_list">
    	  <?php
    		if (!function_exists('dynamic_sidebar') || !dynamic_sidebar(1)) : ?>
    	  <li>
    			<ul>
    			  <?php
    			query_posts('showposts=10');
    			if (have_posts()) :
    				while (have_posts()) : the_post(); ?>
    				<li><a href="<?php the_permalink() ?>"><?php the_title() ?></a></li>
    <?php
    				endwhile;
    			endif; ?></ul>
    		</li>
    <?php
    		endif; ?></ul>
    </div>
    Thread Starter khaus

    (@khaus)

    ****You know what worked, just putting a space in the Widget title***Problem solved – Thank you!

    anytime ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Remove Title’ is closed to new replies.