Pingbacks not showing in comments area


Author Message
Mike

Posted: 6/24/2009
Quote message 

The pingbacks are not showing in the comments area of the post in the generated Artisteer theme. Please check this url:
http://www.healthyrecipes360.com/337/fat-free-split-pea-soup/

In the comments area it says: One Response to “Fat Free Split Pea Soup”,
But you can't see the comment (it's a pingback). If you check the comments feed you will see the comment: http://www.healthyrecipes360.com/comments/feed/

I generated this theme with the latest version of Artisteer (version 2.1.0.16090.

Do you have a fix for the code that I can edit into the theme's php file?
 
Bob

Posted: 6/24/2009
Quote message 

You are right. Here is a fix.....

http://www.artisteer.com/Default.aspx?post_id=107574&p=forum_post



 
Mike

Posted: 6/24/2009
Quote message 

That did the trick! Thank you very much :-)
 
Garry

Posted: 6/25/2009
Quote message 

wp_list_comments( ) for pingback is missing, so it can be done by inserting following code in your index.php where you need the pingbacks to be displayed:

<?php wp_list_comments('type=pings&callback=art_comment'); ?>

You should wrap it in <ul></ul> tags and assign class: commentlist to it so that it can be dressed up like comments.