• I discussed this in a different thread but I think the final question got lost in a long thread.

    Alright guys… my site validated just fine, fixed all the errors that it found and went through and really cleaned up my code. I figured I’d find the root cause of my original problem but I cannot. Here it is:

    https://www.crawlmag.com/wordpress/?page_id=38

    That is a Page and it uses a custom Template. The Template is an exact copy of my main Template (which works fine) except that the Main Page section is changed; I added the blue links and an HTML form. Those, ironically, work fine. The form works great.

    I cannot click on the links on the left sidebar in green; as well as the links in my footer; anything that is included() – but the main body links (change of address etc) work fine. To me the others are just static text and not hyper-linked. I tried the page in Mac Safari and Mac FireFox, as well as Windows Firefox and IE6 and IE7 and cannot click the links. Several people report that they can indeed click on the links, is there any browser specific problem you can see with my code that would cause this? Thinking caps time!

    I used hyperlinks in the Sidebar instead of the get_pages because I have more control over them. Would this affect things?

    <div class="subnav1">
      <?php if ( !function_exists('dynamic_sidebar')
            || !dynamic_sidebar(1) ) : ?>
    
      <?php if (function_exists('wp_theme_switcher')) { ?>
    
      <h1>Themes</h1>
      <?php wp_theme_switcher('dropdown'); ?>
      <?php } ?>
      <ul>
      <li><a href="<?php bloginfo('url'); ?>">Home</a></li>
      <li><a href="https://www.crawlmag.com/wordpress/?page_id=31">Subscribe</a></li>
      <li><a href="https://www.crawlmag.com/wordpress/?page_id=32">Renewals</a></li>
      <li><a href="https://www.crawlmag.com/wordpress/?page_id=39">Back Issues</a></li>
      <li><a href="https://www.crawlmag.com/wordpress/?page_id=38">Customer Service</a></li>
      </ul>
    <div class="subnav2">
      <ul>
      <li><a href="https://www.crawlmag.com/wordpress/?page_id=34">Advertise</a></li>
      </ul>
    </div>
    
      <br/><br/><br/>
      <h1><?php _e('Staff Blogs');?></h1>
      <?php get_links(-1, '<li>', '</li>', '', FALSE, 'name', FALSE, FALSE, -1, FALSE); ?>
    <div class="subnav2">
      <ul>
      <li><a href="https://www.crawlmag.com/alex">Alex Gauthier</a></li>
      <li><a href="https://www.crawlmag.com/alex">Brandon Foster</a></li>
      <li><a href="https://www.crawlmag.com/alex">Justin Lucero</a></li>
      <li><a href="https://www.crawlmag.com/alex">Tim Piele</a></li>
      <li><a href="https://www.crawlmag.com/alex">Tom Clark</a></li>
      </ul>
    </div>
    <div class="subnav2">
      <ul>
      <li><a href="https://www.timbercrawler.com">Timbercrawler Forums</a></li>
      </ul>
    </div>
      <br/><br/>
    <div class="subnav3">
      <ul>
      <li><a href="https://www.crawlmag.com/wordpress/?page_id=40">Photo Gallery</a></li>
      <li><a href="https://www.crawlmag.com/wordpress/?page_id=41">Desktop Wallpapers</a></li>
      <li><a href="https://www.crawlmag.com/wordpress/?page_id=42">Our Covers</a></li>
      <li><a href="https://www.crawlmag.com/wordpress/?page_id=43">Event Calendar</a></li>
      </ul>
    </div>
      <?php endif; ?>
    
    </div>

    Because the footer doesn’t work either, I am thinking it is higher up the food chain, like in one of the Page Template Pages? But I am at a loss, help!?!?

  • The topic ‘Missing Links (quite odd)’ is closed to new replies.