rjfalcon
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Using Images with Theme SwitcherIt 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..Forum: Fixing WordPress
In reply to: Exerpt not working in Fresh-bananashehe.. 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.
Forum: Themes and Templates
In reply to: Help with Blix 0.9You 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', '- ', '
- ">Entries (RSS)
- ">Comments (RSS)
- ','
', '', 0, 'name', 0, 0, -1, 0); ?>
<h2>Feeds</h2>
<ul class="feeds">
<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 BlixHow can you make pages without getting on the navbar or on any menu? just a page.
Forum: Fixing WordPress
In reply to: Sidebar in PagesI’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..