• Resolved wahinekai

    (@wahinekai)


    I am using pressrow hosted on Media Temple.
    i’ve got most of my issues resolved except…. adding pages.
    is there some sort of special step to adding pages and having them show up in the upper “tab” or “menu” area next to “blog, archive and about”?

    I have been searching but have had no success.

    All I need to do is add one product page and get the archive page working.

    with the archive page i get a 404 and the product page does not show up at all.

    http://ihepaddles.com.s48340.gridserver.com/’

Viewing 5 replies - 1 through 5 (of 5 total)
  • Your current nav code doesn’t look like wp_list_pages() output, so my guess is that your links are hard-coded. In your header.php theme file, try replacing your nav code with this:

    <div id="nav">
    <ul>
    <?php wp_list_pages('title_li=&sort_column=menu_order&depth=1'); ?>
    </ul>
    </div>

    – Tim

    Thread Starter wahinekai

    (@wahinekai)

    AWESOME!!!!

    it worked but now I don’t have a “home” button and none of the new pages created have the added tabs.

    is there something else I need to edit?

    can you help me with that too?
    😉

    To add the Home link:

    <div id="nav">
    <ul>
    <li><a href="<?php bloginfo('home'); ?>">Home</a></li>
    <?php wp_list_pages('title_li=&sort_column=menu_order&depth=1'); ?>
    </ul>
    </div>

    Not sure what you mean about the new pages having added tabs.

    – Tim

    Thread Starter wahinekai

    (@wahinekai)

    Hi Tim,
    actually it is working properly now, I do have one more question if you have the time, and then I’m good.

    my title at the top right of the page “ihepaddles” links to my server (http://ihepaddles.com.s48340.gridserver.com/)and not the domain name (www.ihepaddles.com). so if people were to glance up at the address bar they would see the long address.

    Can you tell me what page and what code I need to change to have the link point to “www.ihepaddles.com instead of the “actual long server address/location”

    thanks again,
    Liz

    Thread Starter wahinekai

    (@wahinekai)

    Tim, never mind last question, i got it!
    thanks for all your help!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘pressrow, can’t add pages… they don’t show up in tab area’ is closed to new replies.