misuko
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Fixing WordPress
In reply to: Alternating comment row colors in wordpress 3Well, whatever, I’m using one of the many commenting APIs now.
Forum: Fixing WordPress
In reply to: Alternating comment row colors in wordpress 3esmi: I believe the issue here is to maintain the features implemented by wp_list_comments(); (ie. threaded comments) while having comments of alternating colours.
Which, incidentally, is what I would like to know how to do as well.
Forum: Fixing WordPress
In reply to: Display only parent category in postOkay, solved it myself. I used a VERY primitive method.
The code, in case anyone needs to do anything similar in the future.
<?php $category = get_the_category(); $parent = get_cat_name($category[0]->category_parent); if (!empty($parent)) { echo '<a href="', bloginfo('url'), '/', $parent, '/">', $parent, '</a>'; } else { echo the_category(', '); } ?>Forum: Fixing WordPress
In reply to: wp-comments-post.php blank pageShane:
If you look in “About this Topic”, I specified my version. Restarting the MYSQL daemon did the trick, though. I repaired the table but didn’t restart it. Thanks.Forum: Fixing WordPress
In reply to: wp-comments-post.php blank pageEDIT: The issue with comments from one entry appearing on another is fixed.
Viewing 5 replies - 1 through 5 (of 5 total)