Viewing 9 replies - 1 through 9 (of 9 total)
  • Isn’t that the navigation? If you remove that all will your users navigate your site? Sounds like a bad idea to me.

    Thread Starter Nanche

    (@nanche)

    No, i mean the the text above the page titles (Home » Hvorfor Google +1?) (Home » Pakker) (Home » Kontakt).

    Sill don’t know what you mean.

    On your site I see your logo.
    Below that your navigation and search
    Below are your breadcrumbs Home » Hvorfor Google +1? which you are calling your page titles

    Below that is your page title..

    There’s nothing else on your site, so I don’t know what text you want to remove.

    Thread Starter Nanche

    (@nanche)

    Ohh. I mean that i want to remove all the breacumbs (didn’t know the name for it) and all the page titles.
    I have tried looking on many different guides but none of them seems to work on my theme.

    Oh, I see what you mean now…

    In the theme templates, you need to find the area that has the tags

    <div id="breadcrumbs">
    	stuff in here
    </div> <!-- end #breadcrumbs -->

    I would start in the page.php

    It’s hard to know because this theme is a paid theme, so I don’t have access to it.

    Thread Starter Nanche

    (@nanche)

    <?php get_header(); ?>
    
    <div id="content_area" class="clearfix">
    	<div id="main_content">
    		<?php get_template_part('includes/breadcrumbs','index'); ?>
    		<?php get_template_part('loop','page'); ?>
    		<?php if ( 'on' == get_option('evolution_show_pagescomments') ) comments_template('', true); ?>
    	</div> <!-- end #main_content -->
    	<?php get_sidebar(); ?>
    </div> <!-- end #content_area -->
    
    <?php get_footer(); ?>

    I have this code under page.php 🙂

    Thread Starter Nanche

    (@nanche)

    I removed the breadcumb now but how do i remove page title?

    Look in the loop-page.php
    there should be something like <?php the_title();>
    It might be wrapped in <h1> or <h2> tags

    Thread Starter Nanche

    (@nanche)

    Thank you alot for the help 🙂
    But one last question is it possible to remove the space between navigation menu and where page title used to be?

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

The topic ‘Remove page title and…..’ is closed to new replies.