hi!
I would like to have a link next to each comment so i can delete them directly when i'm logged in as admin.
I did the same with the posts like this in the _main.php
<div class="bSmallPrint">
<?php $Item->feedback_link( 'comments' ) // Link to comments ?>
<?php $Item->feedback_link( 'trackbacks', ' • ' ) // Link to trackbacks ?>
<?php $Item->feedback_link( 'pingbacks', ' • ' ) // Link to trackbacks ?>
<?php $Item->edit_link( ' • ' ) // Link to backoffice for editing ?>
<?php $Item->trackback_rdf() // trackback autodiscovery information ?>
<?php $Item->delete_link( ' • ', ' ', '#', '#', '', false ); ?>
</div>
so it ends up like this:
1 Comment • Edit • Delete
but i couldn't make it work the same way with the comments in _feedback.php
could anybody help me with that?
roman
<?php $Comment->edit_link( ) // Link to backoffice for editing ?>
<?php $Comment->delete_link( ) // Link to backoffice for deleting ?>