Sure, although I'm still not sure what exactly you want to remove, so I'll just tell you how to remove the entry footer completely: Search your entries.tpl for "<div class='serendipity_entryFooter'>" (Line 37 in my editor). Delete this line and the following lines until:carlitocabana wrote:Maybe you can tell me what i have to do to delete the whole "Posted by xxx in Category at 16:16 | Edit entry" text beneath a entry?
Code: Select all
{$entry.add_footer}
</div>
As I said, this removes the complete entry footer including the number of trackbacks and comments. If you want to keep those, that's a bit more complicated to explain, so I'll wait for you to confirm this
Sure, just deletecarlitocabana wrote:And is there a way to remove the text "(Page 1 of 1, totaling 2 entries)" at the far bottom of a page on the blog?
Code: Select all
{if $footer_info}
({$footer_info})
{/if}
YL