Scribe
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: how to get links out of category listSince the upgrade to 2.1 I’m having the same problem. The blogroll category headings (not the actual links themselves) are showing up under Categories on the blog. The links are producing error messages.
How can we exclude the blogroll categories from showing up?
If you want to see an example, my blog can be found at
http://www.karenleefield.com/blog/
By the way, I’ve searched the forums for an answer too, but can’t find one.
Forum: Plugins
In reply to: Spam Karma 2 – resetting blacklistOh, I saw that button butn was too scared to push it. 🙂
Thank you.
Forum: Themes and Templates
In reply to: Excluding Pages on Blix Theme🙂
I made a mistake, you have to make these changes in header.php NOT bx_functions.php.
Forum: Themes and Templates
In reply to: Excluding Pages on Blix ThemeSorry, I’m not spamming, I’m sharing solutions as I find them.
If you have a page called “about” and you don’t want it to show in the top navigation bar, just remove the following from bx_functions.php.
elseif($page_name == “about”) {
(is_page($page_id))?$selected = ‘ class=”selected”‘:$selected=”;
echo “<li”.$selected.”>About\n”;
}and then add the following to the same place as mentioned in my previous post:
elseif ($page_title == “about”) {/*ignore*/}
It took me four hours to work this out. I hope this helps someone else.
Forum: Themes and Templates
In reply to: Excluding Pages on Blix ThemeIt’s OK, I found the thread with the answer.
http://wordpress.org/support/topic/41380
Go down half a dozen posts and you’ll see one written by Minna about adding one line of code to bx_functions.php, where indicated on the other thread. This is the code (just change the number to the id number of your page).
elseif ($page_id == “364”) {/*ignore*/}
Note: This does not work for the page entitled “about”, but it will get rid of other pages. I’ll have to find another solution for my “About” page.
Forum: Themes and Templates
In reply to: Excluding Pages on Blix ThemeI’ve tried what Chriggi said and it removes the pages from the sidebar but not the top navigation bar.
I have two pages I do NOT want across the top. Can someone give me the proper code to get rid of those two pages please? The page id numbers are 2 and 364. Also, where would I put the code.
Everything else about this theme is great. If I can’t remove those two pages, I’ll have to look for another template and I don’t want to do that.
Please help.
Forum: Fixing WordPress
In reply to: Parent Page only in SidebarIt couldn’t get any easier than that.
Many thanks. 🙂