I am using the andreas_01 skin. When I directly access a post there is a link for the previous and next post at the top of my post. Is there a way in the back office to disable these features?
I think this is likely to be a skin thing rather than a back office thing. If you open up the index.main.php file in your skin folder try removing the following:
<?php
// ------------------- PREV/NEXT POST LINKS (SINGLE POST MODE) -------------------
item_prevnext_links( array(
'block_start' => '<table class="prevnext_post"><tr>',
'prev_start' => '<td>',
'prev_end' => '</td>',
'next_start' => '<td class="right">',
'next_end' => '</td>',
'block_end' => '</tr></table>',
) );
// ------------------------- END OF PREV/NEXT POST LINKS -------------------------
?>
Hi
I think this is likely to be a skin thing rather than a back office thing. If you open up the index.main.php file in your skin folder try removing the following:
L