ragecg
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: js in header on certain page onlyDam. It didn’t work.
Are there any plugins for this?
Just wondering:)
Forum: Fixing WordPress
In reply to: js in header on certain page onlyJust wondering if this worked for you JayK, as I have the same problem, and I am going to try this this weekend:)
Forum: Fixing WordPress
In reply to: page management questionYeah, thats the weird thing.
I’m stumped.
I might just start over to see if it fixes itself, so I’ll wait to see if anyone has any ideas by friday, if not I’ll try it again.
Thanks!
Forum: Fixing WordPress
In reply to: page management questionSorry to keep asking all, but does anyone have a fix for this?
My #sidebar page loop code is above, and according to the codex, I’m doing it right, but it still won’t sort by menu_order?
PS, I checked to make sure my menu_order in my admin panel has the correct numerical hierarchy as well i.e.:
1: About RAGEBLOG
2. Experiments
4. -Test sub page
3. Izzy Fat Loss
6. -Daily Chart
5. -Daily ScheduleIdeas? Thanks for anything!
Forum: Plugins
In reply to: Sitemap Page?Searching for “Sitemap” in this forum only gets this thread, or info on the Google Map feature.
Like Totenmaske asked, might there be a way you could post your final working code Aleister?
This is a great feature missing from the “automatic” nature of WP.
Thanks for any help!
Forum: Themes and Templates
In reply to: Page for “Home” in sidebarAnother way that Minna explained how to do this, and the way I have mine working is:
<ul>
<li><h2>MENU</h2>
<a href="<?php bloginfo('url'); ?>">Home</a>
<?php wp_list_pages ('sort_column=menu_order&title_li='); ?>
</li>
Forum: Themes and Templates
In reply to: Insert page at top of default post listingWhat I did was more sloppy, but worked for me:
I simply copied a snippet of my page content into a new post, with a link at the bottom mimicing the “More” link but making it go to my “Page” rather than going to the rest of the post. (which doesn’t exist)
Simple, sloppy, but simple:)
Forum: Installing WordPress
In reply to: pages listed without showing “pages” (sounds weird know)Looks like you got this fixed yes?
Because for a second there, I first thought you were looking for this:
Removing “Pages” title as defined here:
http://codex.wordpress.org/Template_Tags/wp_list_pagesBut it looks like you got it, so you r good to go.
Nice clean site btw:)
Forum: Fixing WordPress
In reply to: page management questionOk, I did a fresh install of WP, and my page loop looks like so:
<?php wswwpx_fold_page_list ('sort_column=menu_order&title_li='); ?>
If you notice, I’ve set it up so that it “should” be sorting by Menu Order as defined here:
http://codex.wordpress.org/Template_Tags/wp_list_pagesBut it still is not working?
Any tips anyone could throw my way would be very welcomed!
Thanks!
NOTE: I am using the “fold_page_list” plug, but that is not messing with the sorting at all.
Forum: Fixing WordPress
In reply to: Add Static links To Pages MenuRock on! It worked. I bow to you!!
Thanks much! Now onto the css….
Thanks again all!
Forum: Fixing WordPress
In reply to: Add Static links To Pages MenuThanks Minna! I will try tonight after work!
Forum: Fixing WordPress
In reply to: Add Static links To Pages MenuAwesome Joox!
Can you post the final code you used to get this to work?I can handle the css no prob, but I’m at the point that you were where my pages menu list looks like so:
http://www.ragecg.com/bushidoThis is because my current code looks like this:
<li><a href="<?php bloginfo('url'); ?>">Home</a></li>
<?php wswwpx_fold_page_list ('sort_column=menu_order&title_li=<h2>' . __('MENU') . '</h2>' ); ?>Thanks for any help, and thanks to all of you (esspecialy you Minna!) for helping with this issue, as I will be needing it for another WP custom site I’ll be doing for a client next week:)
NOTE: As you can see, I am using the “fold_page_list” plugin in the wp_list_pages string.
It adds some new functions to the wp_list_pages one without hurting anything:)
Works very well btw:)Thanks again!
Forum: Fixing WordPress
In reply to: Page order in sidebarJust wondering if this worked for you, as it did not work for me?
If it did, might you be able to shed some light on how you got it to work?
Thanks!
(ps, didn’t mean to cross-post, but it is relevant to my original question, and I am curious to know if it worked for this poster:)
Forum: Fixing WordPress
In reply to: page management questionFor now do you folks think I should just use static links in my sidebar directly to my permalinks for my pages till a fix is made?
Sorry to ask.
I’m also going to do a fresh install of WP to see if it is somethin mundane that I commented or killed my accident:)
Thanks again for the help!
Forum: Fixing WordPress
In reply to: page management questionDarn, tried that, but still nogo:(
Thanks MUCH for the link… bookmarked!
I should have looked harder:)I’m using the following code from the codex, but it is still not ordering by page order in manage pages menu
<?php wp_list_pages('sort_column=menu_order&title_li=<h2>' . __('Pages') . '</h2>' ); ?>