• Resolved Debbie Burgess

    (@debbie-burgess)


    My website has been pretty stable for the last year and a half. I went to do a small edit – now my headers are not showing child pages. I am using the sophisticated folio.

    Can anyone help?

Viewing 6 replies - 1 through 6 (of 6 total)
  • There are literally thousands of WordPress themes – which means that many people won’t be familiar with your particular theme. So a link to your site where people can see the theme might result in more responses.

    Debbie I think you will need to show a link to your site was your edit in the css or html on a page etc

    Thread Starter Debbie Burgess

    (@debbie-burgess)

    Thanks for the replies, my site is http://www.brucecochrane.ca

    The parent/child pages are correct on the left nav.

    Thread Starter Debbie Burgess

    (@debbie-burgess)

    For some reason even though my website was showing proper headers, my custom navigation in word press had reverted to different headers (About, Contact, Getting STarted, Bruce Cochrane’s resume) to I had to reset my custom navigation in the “sophisticated” theme –

    Thread Starter Debbie Burgess

    (@debbie-burgess)

    [ Moderator Note: Please post code or markup snippets between backticks or use the code button. As it stands, your code may now have been permanently damaged/corrupted by the forum’s parser. ]

    DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head profile="http://gmpg.org/xfn/11">
    
    <title><?php woo_title(); ?></title>
    <?php woo_meta(); ?>
    
    	<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('template_directory'); ?>/css/reset.css" />
        <link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_url'); ?>" media="screen" />
        <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php if ( get_option('woo_feedburner_url') <> "" ) { echo get_option('woo_feedburner_url'); } else { echo get_bloginfo_rss('rss2_url'); } ?>" />
        <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
    
        <!--[if IE 6]>
    		<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/includes/js/pngfix.js"></script>
    		<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/includes/js/menu.js"></script>
    		<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('template_directory'); ?>/css/ie6.css" />
        <![endif]-->	
    
    	<!--[if IE 7]>
    		<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('template_directory'); ?>/css/ie7.css" />
    	<![endif]-->
    
        <?php if ( is_single() ) wp_enqueue_script( 'comment-reply' ); ?>
        <?php wp_head(); ?>
    
    </head>
    
    <?php woo_globals(); // Set global variables ?>
    
    <body>
    
    	<div id="container">
    
    		<div id="top">
    
    			<div id="header">
    
    				<div class="inner">
    
                    	<div id="logo">
    
                            <a>" title="<?php bloginfo('description'); ?>"><img class="title" src="<?php if ( get_option('woo_logo') <> "" ) { echo get_option('woo_logo'); } else { bloginfo('template_directory'); ?>/images/logo.png<?php } ?>" alt="<?php bloginfo('name'); ?>" /></a>
    
                            <?php if(is_single() || is_page()) : ?>
                            <span class="site-title"><a>"><?php bloginfo('name'); ?></a></span>
                            <?php else: ?>
                            <h1 class="site-title"><a>"><?php bloginfo('name'); ?></a></h1>
                            <?php endif; ?>
    
                            <span class="site-description"><?php bloginfo('description'); ?></span>
    
                        </div>
    
    				</div><!-- /.inner -->
    
    			</div><!-- /#header -->
    
    			<div id="navigation">
    
    				<div class="inner">
    
    					<ul id="pagenav">
    						<?php
            				if ( get_option('woo_custom_nav_menu') == 'true' ) {
            					if ( function_exists('woo_custom_navigation_output') )
    								woo_custom_navigation_output('depth=3');
    
    						} else { ?>
    						<?php if (is_page()) { $highlight = "page_item"; } else {$highlight = "page_item current_page_item"; } ?>
    						<li class="<?php echo $highlight; ?>"><a>"><?php _e('Home', 'woothemes'); ?></a>
    						<?php
    						if (get_option('woo_cat_menu') == 'true')
    							wp_list_categories('sort_column=menu_order&depth=3&title_li=&exclude='.get_option('woo_nav_exclude'));
    						else
    							wp_list_pages('sort_column=menu_order&depth=3&title_li=&exclude='.get_option('woo_nav_exclude'));
    						?>
    						<?php } ?>
    
    				</div><!-- /.inner -->
    
    			</div><!-- /#navigation -->
    
    			<div id="feature" class="inner">
    
    				<div id="about">
    
    					<p><?php echo stripslashes(get_option('woo_about')); ?></p>
    
    				</div><!-- /#about -->
    
    				<div class="clear"></div>
    Thread Starter Debbie Burgess

    (@debbie-burgess)

    Resolved – needed to add the sub pages and move to show under the parent. So simple.

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

The topic ‘headers not showing child pages’ is closed to new replies.