lexhair
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Archives & Tags not workingTry changing your permalinks.
Forum: Installing WordPress
In reply to: Upgraded to 2.9Looks ok here.
Forum: Plugins
In reply to: [Plugin: Event Calendar 3] Show only events using hardcoded calendar?It’s in the manual. Make sure you have an event category and it’s not your default post category. Set the option “Keep events separate” and you should be fine.
Forum: Plugins
In reply to: Event Calendar 3 and php 5.3Is this just a Windows issue for php 5.3?
Forum: Plugins
In reply to: [Plugin: Event Calendar 3] Is this plugin still in development?There’s something wrong with your ec3_schedule table on your mysql database. Did you install the plugin properly?
Forum: Fixing WordPress
In reply to: event calendar 3.1.4 and wp2.8.4Your category archive page for events doesn’t appear broken. Or at least it looks like mine does for as long as I’ve used EC3. What do you think is broken? It’s not throwing errors.
The beta works just fine on my setup (WP 2.8.5, php 5.2.9 mysql 5.0.81 UTF8). 3.1.4 also works fine. I think the Big Calendar feature needs php5.
Forum: Plugins
In reply to: [Plugin: Event Calendar 3] Is this plugin still in development?Odd. It’s working fine on my 2.8.4 setup. Using ver 3.1.4. on one blog and 3.2 RC2 on another.
Forum: Developing with WordPress
In reply to: [Plugin: Event Calendar 3] Show the end date and end timeThe simple answer is “you can’t”. The ec3_get_events() function does not pull the end time and end date in its mysql query.
Forum: Fixing WordPress
In reply to: Remove P tags when outputting content@rosschapman
Great tip!!Forum: Plugins
In reply to: Multiple Single Post templates/categoriesI think I’d write this differently like so:
<?php $post = $wp_query->post; if ( in_category('26') ) { include(TEMPLATEPATH . '/single-26.php'); } elseif ( in_category('100') ) { include(TEMPLATEPATH . '/single-100.php'); } else { include (TEMPLATEPATH.'/single-3.php'); } ?>
Assuming your single-3.php is your “catch all” template. You don’t need a return or a get_header() in this script. get_header() needs to be in whichever template you are redirecting to.
Forum: Plugins
In reply to: [Plugin: WP Categories and Posts] Thanks for picking this up!Ronald wrote a wonderful customized function (he called it a hack..riiight) for me which allows me to show the posts and exclude the parent category link. You can see the parent category exclusion at the bottom half of this archive/category page on my blog.
Good luck, Phil. And thank you, as always, Ronald.
Forum: Plugins
In reply to: [Plugin: Ozh’ Admin Drop Down Menu] Logout problem on FirefoxTry this. It’s not the plugin.
and I floated the Reply to Comment link over to the right.
Hi Ronald…fair point. As an admin, I only allow the commentators (?) a fixed amount of time to edit their comment so no big deal there. As an admin, I made my suggestion because the resulting output on my theme was a bit mashed up (as admin) showing the edit links (and icons) when the Reply to Comment button (WP 2.7.1) was missing.
What wound up working on my theme (after I made my initial post) was turning on clearfix:after. I had that option turned off before I updated to WP 2.7. Then I edited my theme CSS and comments.php for WP 2.7 and stripped out the theme’s original, native AJAX commenting which used scriptaculous. I never went back and turned clearfix:after on until this morning. So now I can leave the edit links on as admin and the css layout is fine.
I guess what I’m saying is that clearfix:after fixed the layout problem which only I saw as admin so I don’t have to turn off admin edit links in the comment area on posts with closed comments.
All the best,
JohnForum: Alpha/Beta/RC
In reply to: Parameters for wp_list_comments() in 2.7?The codex is still a little light on this topic. This thread is quite useful.