Cutline Theme Support Forums » Cutline Theme Support Forums

header links missing or not working

(6 posts)
  • Started 4 years ago by dovidf
  • Latest reply from dovidf
  • This topic is not resolved

  1. dovidf
    Member

    There is a link to my about page but it doesn't work.

    I also have a question page which is based on a plugin which doesn't appear at all.

    How can I correct theses problems?

    Posted 4 years ago #
  2. dovidf
    Member

    My URL is www.askthecomputerdoc.com/blog. The "Ask the Computer Doc" page does not come up at all.

    Posted 4 years ago #
  3. Not sure about the plug in issue, and your link to your site didn't work,

    but... did you read this: http://cutline.tubetorial.com/cutline-problems-qa-part-1/

    They answer a lot of questions there, one is about the about page.

    Posted 4 years ago #
  4. dovidf
    Member

    Thanks for the link to the tubetorial.

    I made the change to list my pages and it basically works but I have 2 problems.

    I would still like a link to the front page. How do I add that?

    My pages now ask for comments. These pages are not intended to be blog entries. How can this be remedied?

    Posted 4 years ago #
  5. In your wordpress admin panel when you create a new page, or manage your pages, there is a handy discussion panel you can use and just uncheck the option that allows users to comments.. that issue is quite easy.

    As far as having a front page link still, what you need to do is add this right above the php code you added to auto list your pages. (part of what you deleted out to put it there)

    <li><a <?php if (is_home()) echo('class="current" '); ?>href="<?php bloginfo('url'); ?>">home</a></li>

    So your final Unordered navigation list will look like this:

    <ul>
    <li><a <?php if (is_home()) echo('class="current" '); ?>href="<?php bloginfo('url'); ?>">Front Page</a></li>
    <?php wp_list_pages('sort_column=menu_order&depth=1&title_li='); ?>
    </ul>

    Hope that helps...

    Posted 4 years ago #
  6. dovidf
    Member

    Thanks for the helpful tips

    Posted 4 years ago #

RSS feed for this topic

Reply

You must log in to post.