Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • It is possible.
    But it isn’t as fancy as a plugin or something.
    Just insert an image and make a link of it.
    the URL is at mine http://rjfalcon.com/index.php?wptheme=Gemini+Green
    the Gemini+Green part you can change to your theme..
    and of course use your own site in stead of rjfalcon.com.
    It works with me.

    Don’t know if you need the wp-theme-switcher plugin. I have it activated and it works.
    Hope it works for you..

    Thread Starter rjfalcon

    (@rjfalcon)

    hehe.. I’m still a bit of a newbie.
    didn’t knew about the more tag.. sorry.. but the excerpt isn’t working.. but it doesn’t matter anymore.. I’ll use the more tag.

    Thanks.

    You probably have it already for a long time but I saw it and I used to have the same problem.
    Maybe for others who still have the problem here is it. It should work
    This is sidebar.php

    <hr class="low" />

    <!-- subcontent ................................. -->
    <div id="subcontent">

    <?php /**
    * Pages navigation. Disabled by default because all new pages are added
    * to the main navigation.
    * If enabled: Blix default pages are excluded by default.
    *
    ?>
    <h2>Pages</h2>
    <ul class="pages">
    <?php
    $excluded = BX_excluded_pages();
    wp_list_pages('title_li=&sort_column=menu_order&exclude='.$excluded);
    ?>

    <?php */ ?>

    <?php
    /**
    * If a page called "about_short" has been set up its content will be put here.
    * In case that a page called "about" has been set up, too, it'll be linked to via 'More'.
    */
    $pages = BX_get_pages('with_content');
    if ($pages) {
    foreach ($pages as $page) {
    $page_id = $page->ID;
    $page_title = $page->post_title;
    $page_name = $page->post_name;
    $page_content = $page->post_content;

    if ($page_name == "about") $more_url = 'More';
    if ($page_name == "about_short") {
    $about_title = $page_title;
    $about_text = BX_remove_p($page_content);
    }
    }
    if ($about_text != "") {
    echo "<h2>".$about_title."</h2>\n";
    echo "".$about_text;
    if ($more_url != "") echo " ".$more_url;
    echo "\n";
    }
    }
    ?>

    <h2>Categories</h2>

    <ul class="categories">
    <?php wp_list_cats('sort_column=name&hide_empty=0'); ?>

    <h2>Links</h2>

    <ul class="links">
    <?php get_links('-1', '

    • ', '
    • ', '', 0, 'name', 0, 0, -1, 0); ?>

      <h2>Feeds</h2>

      <ul class="feeds">

    • ">Entries (RSS)
    • ">Comments (RSS)
    • <h2>Calendar</h2>

      <?php get_calendar() ?>

      <h2>Most Recent Posts</h2>

      <ul class="posts">
      <?php BX_get_recent_posts($p,10); ?>

      <?php if (is_page("archives") || is_archive() || is_search()) { ?>

      <h2>Calendar</h2>

      <?php get_calendar() ?>

      <?php if (!is_page("archives")) { ?>

      <h2>Posts by Month</h2>

      <ul class="months">
      <?php get_archives('monthly','','','

    • ','
    • ',''); ?>

      <?php } ?>

      <h2>Posts by Category</h2>

      <ul class="categories">
      <?php wp_list_cats('sort_column=name&hide_empty=0'); ?>

      <?php } ?>

      </div> <!-- /subcontent -->

    Forum: Themes and Templates
    In reply to: Pages and Blix

    How can you make pages without getting on the navbar or on any menu? just a page.

    Forum: Fixing WordPress
    In reply to: Sidebar in Pages

    I’m having the exact same problem..
    I also want to have custom menus for pages. I’m not skilled enough to figure out the hack for the Kubrick theme. So if anyone can help me with the Blix theme..

    Thnx..

Viewing 5 replies - 1 through 5 (of 5 total)