bendrucker
Forum Replies Created
-
Forum: Plugins
In reply to: Adding to RSS FeedCan anyone help me out with this?
Forum: Plugins
In reply to: Adding to RSS FeedBump
Forum: Fixing WordPress
In reply to: Garbled text in footerOK so this is what the WP Exploit Scanner turned up. Can anyone help me interpret this and how to fix it?
http://skitch.com/baseballboy828/n8qap/exploit-scanner-academic-perspective-wordpress
Forum: Themes and Templates
In reply to: Comment StylingBump…
Forum: Fixing WordPress
In reply to: Garbled text in footerThanks. The code does not appear in footer.php. It must be coming from when the footer calls wp_footer. I did the WP Exploit Scanner but I had trouble finding anything. Anyone have any ideas on a few places I should look to get rid of this code?
Forum: Themes and Templates
In reply to: Comment StylingAnyone know how to make these classes appear?
Forum: Themes and Templates
In reply to: Comment StylingSo I’ve upgraded my theme and now it uses wp_list_comments instead of the legacy method. But the .byuser and .bypostauthor aren’t appearing.
Forum: Themes and Templates
In reply to: Comment StylingI managed to muster up my near non-existent PHP skills and get something working. I added this php code immediately after the div class=” for the comment div.
<?php if($comment->user_id != 0) {echo 'usercomment';} if(get_the_author_meta('ID') == $comment->user_id) {echo ' authorcomment';}?>Forum: Themes and Templates
In reply to: Comment Stylinghttp://www.academicperspective.com/
There’s the URL. Could you tell me what page contains comments generated using wp_list_comments?
Forum: Fixing WordPress
In reply to: Comments BrokenI added name attributes to the email, name, etc. fields with the same content as the id and that worked.
Forum: Themes and Templates
In reply to: Comment StylingI mean that I checked the source of a post page and there is no mention of the classes you referred to. Should I be looking somewhere else?
Forum: Themes and Templates
In reply to: Comment StylingI checked the page and did not see any of the tags you mentioned. If they were there, that would be perfect for what I’m trying to do!
Forum: Themes and Templates
In reply to: Wrap container div to inside divNew there was something like that! Thanks so much!
Forum: Themes and Templates
In reply to: Comment StylingThe blog is currently being constructed, so I don’t have anything to show what I want to do. But here’s an overview so my question is more clear. I want to create unique comment classes based on the following types of commenters:
Author of Post: class=”postauthor”
Writer, but not author of given post: class=”author”
General user: Regular comment styleForum: Plugins
In reply to: Create a nice author listing pageThank you so much. With the basic structure you gave me, I was able to create a great staff page. (http://www.academicperspective.com/staff/)
Thanks again, I really owe you one!