Can someone help me with this WP template edit?

17 replies
I would like to remove the pages listed on the top of the header on my site. If anyone is willing to help me do this, send me a PM and I'll send you the link to the site.

Thanks!
#edit #template
  • Profile picture of the author AlanGNW
    What is the site built on?
    {{ DiscussionBoard.errors[2797493].message }}
  • {{ DiscussionBoard.errors[2799107].message }}
  • Profile picture of the author Ruby Rynne
    If it's WordPress 3.0, then use the 'menus' function to create a menu of the things you DO want in the top bar, and then assign it to that position.

    If it's WP 2.x then you'll most likely have to faff about with plugins. Upgrade your Wordpress if you can, it will make these things a snap for you.
    {{ DiscussionBoard.errors[2799135].message }}
  • Profile picture of the author SoEasyMoney
    I downloaded the plugin but unfortunately when I tick it, it excludes the page from the nav bar on the side as well.

    Here's my site: Infant Car Seats Info. I'm looking to remove the page names from the top of the page, but want them in the side nav bar. Thanks guys!
    {{ DiscussionBoard.errors[2799934].message }}
  • Profile picture of the author mywebwork
    Wouldn't this simply be a matter of removing these from your themes header.php file? Or am I missing something here?

    Bill
    {{ DiscussionBoard.errors[2800056].message }}
  • Profile picture of the author Howard_Aulsbrook
    Originally Posted by SoEasyMoney View Post

    I would like to remove the pages listed on the top of the header on my site. If anyone is willing to help me do this, send me a PM and I'll send you the link to the site.

    Thanks!
    Is something like below what you are looking for? It is not exactly what you have now, but it's close. All you would need to do is add your header background and change the widgets.
    {{ DiscussionBoard.errors[2800328].message }}
  • Profile picture of the author SoEasyMoney
    Can't find the <?php wp_list_pages('title_li=' ); ?> code, but here's the entire code in the header file:

    <!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" <?php language_attributes(); ?>>
    <head profile="http://gmpg.org/xfn/11">
    <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
    <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
    <meta name="google-site-verification" content="v7kJraYy4u79QoxbDpDA5ugasfEcPb2c4AqyMFdTz 0I" />
    <title><?php if (is_home () ) { bloginfo('name'); } elseif ( is_category() ) { single_cat_title(); echo ' - ' ; bloginfo('name'); }
    elseif (is_single() ) { single_post_title(); }
    elseif (is_page() ) { bloginfo('name'); echo ': '; single_post_title(); }
    else { wp_title('',true); } ?></title>
    <script type="text/javascript" src="<?php bloginfo('template_url'); ?>/script.js"></script>
    <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
    <!--[if IE 6]><link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/style.ie6.css" type="text/css" media="screen" /><![endif]-->
    <!--[if IE 7]><link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/style.ie7.css" type="text/css" media="screen" /><![endif]-->
    <link rel="alternate" type="application/rss+xml" title="<?php printf(__('%s RSS Feed', 'kubrick'), get_bloginfo('name')); ?>" href="<?php bloginfo('rss2_url'); ?>" />
    <link rel="alternate" type="application/atom+xml" title="<?php printf(__('%s Atom Feed', 'kubrick'), get_bloginfo('name')); ?>" href="<?php bloginfo('atom_url'); ?>" />
    <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
    <?php wp_head(); ?>
    </head>
    <body>
    <div id="art-page-background-gradient"></div>
    <div id="art-page-background-glare">
    <div id="art-page-background-glare-image"></div>
    </div>
    <div id="art-main">
    <div class="art-Sheet">
    <div class="art-Sheet-tl"></div>
    <div class="art-Sheet-tr"></div>
    <div class="art-Sheet-bl"></div>
    <div class="art-Sheet-br"></div>
    <div class="art-Sheet-tc"></div>
    <div class="art-Sheet-bc"></div>
    <div class="art-Sheet-cl"></div>
    <div class="art-Sheet-cr"></div>
    <div class="art-Sheet-cc"></div>
    <div class="art-Sheet-body">
    <div class="art-nav">
    <div class="l"></div>
    <div class="r"></div>
    <div class="art-nav-center">
    <ul class="art-menu">
    <?php art_menu_items(); ?>
    </ul>
    </div>
    </div>
    <div class="art-Header">
    <div class="art-Header-jpeg"></div>
    <div class="art-Logo">
    <h1 id="name-text" class="art-Logo-name">
    <a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
    <div id="slogan-text" class="art-Logo-text">
    <?php bloginfo('description'); ?></div>
    </div>

    </div>


    WHAT SHOULD I REMOVE?

    Thanks again, in advance, for the help. This is about to make me crazy!!
    {{ DiscussionBoard.errors[2801143].message }}
  • Profile picture of the author Ruby Rynne
    Looks like an Artisteer theme. Do you have Artisteer? You can edit it in that.

    @Istvan, I guess I assumed if ppl have upgrade to WP3 then they've upgraded their themes too, my bad
    {{ DiscussionBoard.errors[2801227].message }}
  • Profile picture of the author joshuagan80
    It's possible to remove the pages from the top. I've done that for my site. I removed contact us, private policy & term of use from the top and place them in the footer.

    It's not easy, but can be done. I spent hours figuring it out.

    My site is How to Get a Girlfriend | How to Get a Girl to Like You | Advice on Dating Women. You may take a look.
    {{ DiscussionBoard.errors[2801249].message }}
  • Profile picture of the author SoEasyMoney
    Ruby--don't have Artisteer, but will google it and try to find it. Thanks

    Josh--thanks for the comment, but looks like you are just spamming trying to get traffic to your site. You told me you "spent hours figuring it out" but didn't say what the solution was. Helpful, real helpful.
    {{ DiscussionBoard.errors[2801297].message }}
  • Profile picture of the author Howard_Aulsbrook
    Unless you have the original file from Artisteer, you will not be able to edit the theme in Artisteer. You cannot import files into Artisteer, only export. I did a quick copy of your theme in my above post with the tweaks you were requesting.
    {{ DiscussionBoard.errors[2801387].message }}
  • Profile picture of the author SoEasyMoney
    Thanks Howard, didn't catch that. Yeah, I guess if that's the next best thing that is what I'll have to settle for. I've been searching themes like crazy and just can't find one that doesn't put the articles in the header. Would you mind tell me how you did that? I know that might sound like a dumb question but I have no clue when it comes to editing code.

    thanks
    {{ DiscussionBoard.errors[2801501].message }}
  • Profile picture of the author Howard_Aulsbrook
    I just looked at your site and recreated the theme. Send me a PM and we can speak more about it if you would like.

    I added your header and matched the font in the title.
    {{ DiscussionBoard.errors[2801516].message }}

Trending Topics