How to add a comment count under the audio and video item detail page?
Using Jamroom
If an item has one or more comments on it there will be a smarty variable of the number of comments, so in your template use something like this -
Number of comments: {$item.audio_comment_count|default:0}
The default modifier is there incase the variable doesn't yet exist (when an item has no comments as yet).
For videos the variable would be $item.video_comment_count
hth