David Calhoun
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: The Events Calendar] BUG: Limiting Number of Events ListedForum: Plugins
In reply to: [Plugin: The Events Calendar] BUG: Limiting Number of Events ListedJust realized that my events feed is now no longer displaying the events in order of event date. Know of a way to fix this?
I tried
'order'=>'asc'but that cause all past events to be displayed. According to The Events Calendar plugin page justeventDisplay=upcomingshould order them by event date.Forum: Plugins
In reply to: [Plugin: The Events Calendar] BUG: Limiting Number of Events ListedThanks a lot, Justin. That did just the trick. The backend even works now as well. I can filter posts by category and see all of them. So, I guess it really isn’t an actual bug.
Thanks again.
Forum: Plugins
In reply to: Has my blog been hacked? (All categories gone and all posts are uncategories)My hosting company ended up saying it was a problem with their server. The /tmp folder had not been dumped, and was causing this error. They said it wouldn’t happen again, hopefully that’s the case.
Forum: Plugins
In reply to: Has my blog been hacked? (All categories gone and all posts are uncategories)Did you ever figure out a cause to this problem?
I am experiencing the exact same symptoms. My categories are disappearing, post are claiming to be uncategorized, and I sometimes get the “#1030 – Got error 28 from storage engine” error when I select the “Structure” tab in phpMyAdmin. All of this happens sometimes, not all the time. It jumps back and forth from working and not working.
If anyone can help it would be greatly appreciated! This is happening on a clients site and I’m trying to get it fixed asap. 🙁
Forum: Plugins
In reply to: [Plugin: The Events Calendar] BUG: Limiting Number of Events ListedForum: Plugins
In reply to: Sort Search Results by RelevanceYes. Thank you for the training session on Google, MichaelH. I had found your proposed plugin, but when attempting to activate it ran into “Plugin could not be activated because it triggered a fatal error.”
@songdogtech – I appreciate the constructive suggestion. I’ll have to check out Relevanssi.
Forum: Plugins
In reply to: [Plugin: WP-Table Reloaded] Odd/Even Row Background ColorThat worked. Thanks for the help.
Forum: Plugins
In reply to: wp_get_archives(cat=id) <— Any way to specifiy cat id in archives?I’ve been looking for an answer to this as well. Kwebble does actually let you include a specific category:
<?php wp_get_archives('cat=1'); ?>The thing I don’t like about Kwebble’s plugin is that it requires you to disable canonical URLs. WordPress really needs to implement include/exclude arguments into the
wp_get_archives()function.I haven’t been able to find a good solutions out there.
Forum: Plugins
In reply to: Monthly Archive by CategoryThe only solution list there that accomplishes what I want to do (KWEBBLE) requires you to disable canonical URLs, which I don’t particularly want to do. :-/
All the other solutions listed are doing completely different things. I just want to create a widget in the side bar that lists a monthly archive of current category you are in.
Forum: Fixing WordPress
In reply to: Category specific monthly archives as navigationWhat was the solution that you found?
I experienced this same bug. My problem was caused by multiple loops as well. I had another loop in my header, I removed it and the calendar started working again.
I was able to use
get_posts();instead ofquery_posts();in the header and everything worked out fine.For reference: http://codex.wordpress.org/Template_Tags/get_posts
Forum: Fixing WordPress
In reply to: Post ThumbnailsBump.
Forum: Plugins
In reply to: [Plugin: WP-Table Reloaded] Drop Down FilterThanks for the quick response! I’ll have to check out the API.
Forum: Plugins
In reply to: Monthly Archive by Category help?Were you able to figure out a solution to this? I’m needing to do this same thing right now.