dirtyverbs
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Blank Page – Theme ResetThanks so much MichaelH, that tip resolved the issue for me.
The strangest thing however was that my site was working perfectly after upgrading to 2.8.2, until it suddenly broke last night around midnight. I suspect the WP-super-cache plugin had something to do with it… the problem doesn’t exactly seem to have originated with my theme, which worked fine after I got back into my admin panel and switched back to it from ‘default.’
Forum: Plugins
In reply to: eventcalendar2 with wp 1.5A ha! This post might be helpful to others:
blogging to the future. Thanks!
Forum: Plugins
In reply to: eventcalendar2 with wp 1.5Bradley / likoma
My main problems are:
1. Having my future posts show up when I call their category in The Loop (not really a EventsCalendar2 issue, I know)
2. Getting my calendar to link to my posts appropriately (even if they are in the future), I use Permalinks.
Any help you can give would be appreciated.
Forum: Fixing WordPress
In reply to: “Big” events calendar (main page, not sidebar)Bradley,
Truely well done. I’m working on something similar and this will help quite a bit. And yes, please do link to the CSS. Thanks.
Forum: Plugins
In reply to: eventcalendar2 with wp 1.5An events calendar feature is sorely missing from WordPress. Thus far I’ve be wrestling with EventCalendar2, experiencing many of the problems above. If anyone has further ideas/fixes, please be sure to post.
Alex, thanks so much to being receptive to our feedback, I really appreciate the work you are doing!
Forum: Themes and Templates
In reply to: How make menu (wp_list_pages) “fold”Hello all,
I have been running into the same limitations with wp_list_pages(), I’m particularly interested in BobyDimitrov’s idea, that would be fine indeed!
For now I’ll just settle for the bugs being fixed so the function actually works correctly, let’s hope for 1.5.1…
Forum: Requests and Feedback
In reply to: The “page” feature rules.Yes, I agree this is could be the best new feature in WordPress 1.5. I was orginally using WP 1.2 just to power the front page of my site, with the rest of the site written in XHTML. I’ve upgraded to 1.5 and am now porting over the content of the XHTML pages. Very cool.
I also agree the Pages features could use a lot more. Yes, keep building on it. Specifically, fixing issues with
wp_list_pagesand adding more template tags pertaining to Pages.Keep up the good work.
Forum: Fixing WordPress
In reply to: Error: ‘invalid argument’ instead of ‘wp_list_pages’Interesting, I am having the same problem.
On my site, I have a page called WRITING. It’s children are POETRY, SHORT STORY. Each of those, in turn, have their own children which are the pieces themselves.
So I’m trying to write a simple menu that will be listed on the WRITING page. Like this:
-
<?php wp_list_pages('sort_column=menu_order&child_of=9&title_li=POETRY');Â ?>
-
<?php wp_list_pages('sort_column=menu_order&child_of=8&title_li=cuentos');Â ?>
Simple, right? Well I get the same
line 368error. BUT, if I add this (from the Codex examples page) above the other twowp_list_pages:-
<?php wp_list_pages('sort_column=menu_order');Â ?>
All three calls work perfectly! No error! Now this strikes me as very wierd. Ideas?