talkingbaseball
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Hide comments from unregistered usersChanging the settings disallows comments from unregistered users. I just want to hide them with an option to make them visible to those who wish to see them.
Forum: Fixing WordPress
In reply to: WP 2.7 – Replying beyond the maximum threaded/nested levelBTC does indeed work in 2.7. The second one is my site as well! I’ll poke around on the Tarski theme. Thanks for you help.
Forum: Fixing WordPress
In reply to: WP 2.7 – Replying beyond the maximum threaded/nested levelBut I want my users to be able to reply to a comment at that level so that it continues to nest at the same level.
Basically, when a thread reaches its maximum nesting value, I want this type of action to happen with the link at the bottom that says “reply here” (underneath this comment). That way, commenters can continue to post in the same thread, but it shows up underneath the last comment in the same permissible nesting level. Does that make sense?
I think I’m asking for more of a core WP 2.7 threaded comment function than anything else right now. Not sure if this is doable.
Forum: Fixing WordPress
In reply to: WP 2.7 – Replying beyond the maximum threaded/nested levelIt looks like this:
<?php wp_list_comments('type=comment'); ?>
It’s type=comment to separate the trackbacks from the comments, and the reply_text isn’t specified. The stylings of the comments are accomplished through the CSS rules, with the following delineating the “reply” text:
ol.commentlist li div.reply { background:#999; border:1px solid #666; border-radius:2px; -moz-border-radius:2px; -webkit-border-radius:2px; color:#fff; font:bold 9px/1 helvetica,arial,sans-serif; padding:5px 10px; text-align:center; width:36px; } ol.commentlist li div.reply:hover { background:#2E8FC6; border:1px solid #0F3461; } ol.commentlist li div.reply a { color:#fff; text-decoration:none; text-transform:uppercase; }
Thanks for your help. It’s much appreciated.