• Hello,

    I dont know the exact name of this but im looking to remove the Page Title and Navigation to get there from the top. The image below should explain it better. Id like to do this on all pages so i imagine ill need to edit some code, witch is fine, but some direction of where to look would be nice.

    https://imageshack.us/f/651/uwdanled1.jpg/

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Simple go to your theme and open your page.php and comment the line like below
    <?php if ( is_front_page() ) { ?>
    <h2 class=”entry-title”><?php //the_title(); ?></h2>
    <?php } else { ?>
    <h1 class=”entry-title”><?php //the_title(); ?></h1>
    <?php } ?>

    Thread Starter tcdesigner

    (@tcdesigner)

    Im a little confused, this is all the page template says:

    <?php get_header(); ?>
    <?php
    global $General;
    $admin_layout_setting_option = 'ptthemes_inner_design_settings';
    $sidebar_left_widget_option = 'Inner Page Sidebar Left';
    $sidebar_right_widget_option = 'Inner Page Sidebar Right';
    $middle_content_widget_option = '';
    if(CHILDTEMPLATEPATH && file_exists(CHILDTEMPLATEPATH . '/content_page.php'))
    {
    	$middle_content_file_fullpath = CHILDTEMPLATEPATH . '/content_page.php';
    }else{
    	$middle_content_file_fullpath = TEMPLATEPATH . "/library/includes/content_page.php";
    }
    include_once(TEMPLATEPATH.'/site_layout_structure.php');
    ?>
    <?php get_footer(); ?>
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Page Title and navigation to get there??’ is closed to new replies.