Mr Papa said
is this an old wp theme? using the very old comments style? by default wp theme, do you mean twenty ten? that would be the one to test (or twenty eleven)… would answer my first question…
No, it’s a pretty recent theme. I acitvated Twenty Eleven (1.3) to see if that would fix it, but alas.
Yellow Swordfish said
There are quite a few details on what is needed in the popup help on the blog linking panel. I would start there.
Yes, the help-popups are great! They’re the first thing I check when not completely sure about something. It states
If your theme comment templates uses the newer WP 2.7+ wp_list_comments() function, you may need to edit the argument list.
Using Display Mixed in Standard Comment Block
If your comments template does not pass any arguments to the wp_list_comments() function or has a ‘type=all’ or ‘type=comment’ argument, the SPF linked topic posts will show up as comments interspersed with the WP comments, sorted by date.
Topic Posts will be sent to the WP function with a type of ‘comment’.
That’s pretty much what the Wiki said as well, but I’m still not sure how to edit my themefiles. Sorry – I know very little php. Even “If your comments template does not pass any arguments to the wp_list_comments()” is beyond me – sorry!
Line 95 of my comments.php:
<ol class=”cosmo-comment-list cosmo-comment-plain”>
<?php
/* Loop through and list the comments. Tell wp_list_comments()
* to use de_comment() to format the comments.
* If you want to overload this in a child theme then you can
* define de_comment() and that will be used instead.
* See de_comment() in news24/functions.php for more.
*/
wp_list_comments( array( ‘callback’ => ‘de_comment’ ) );
?>
</ol>
I’ve asked some people who at least know PHP, but they referred me back here because they don’t know WP/SP.
I’m pretty sure it’s a pretty basic edit, but when you don’t ‘speak’ PHP that doesn’t help much 