• Resolved kriptap

    (@kriptap)


    I am using the paalam theme and have customized thing s a bit, but am stuck with one thing. If you look at the site you’ll see the side bar with the pages, categories and links etc. When I click on a link to read some of the items in the side bar disappear, IE the links and the admin link, I would like them always displayed but can’t find how to do it, can anyone help?

    https://www.lobsterpotdivecenter.com/news

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • Remove the Conditional_Tags from your sidebar.php

    Thread Starter kriptap

    (@kriptap)

    Yes that’s it, but when I remove it I get errors becuase I am not remving it properly. Here is the code can you show me:

    ` <div id=”sidebar” class=”sidecol”>

      <?php if ( function_exists(‘dynamic_sidebar’) && dynamic_sidebar() ) : else : ?>
      <?php if(is_home()) {?>
    • <?php }?>

    • <h2><?php _e(‘Search’); ?></h2>
      <form id=”searchform” method=”get” action=”<?php bloginfo(‘siteurl’)?>/”>
      <input type=”text” name=”s” id=”s” class=”textbox” value=”<?php echo wp_specialchars($s, 1); ?>” />
      <input id=”btnSearch” type=”submit” name=”submit” value=”<?php _e(‘Go’); ?>” />
      </form>
    • <h2><?php _e(‘Pages’); ?></h2>
      <?php wp_list_pages(‘title_li=’ ); ?>
    • <h2>
      <?php _e(‘Categories’); ?>
      </h2>
      <?php wp_list_cats(‘optioncount=1&hierarchical=1’); ?>

    <?php if(is_home()) get_links_list(); ?>

    • <h2>
      <?php _e(‘Monthly’); ?>
      </h2>
      <?php wp_get_archives(‘type=monthly&show_post_count=true’); ?>

    <?php if(is_home()) { ?>

    • <h2>Other</h2>
      <?php wp_register(); ?>

    • <?php wp_loginout(); ?>
    • <?php wp_meta(); ?>

    <?php } ?>
    <?php endif; ?>

    </div>
    <div style=”clear:both;”></div>

    Thanks.

    Thread Starter kriptap

    (@kriptap)

    Got it, thanks.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Need help with layout’ is closed to new replies.