Hello
I'm trying to get rid entirely of the categories, author name and time that appear immediately underneath the blog title.
Instead of
Tue 7th March 2017 20:05, by username, Categories: /
I want
Tue 7th March 2017
I've tried deleting
$Item->issue_time( array(
'after' => '',
'time_format' => '#short_time',
) );
$Item->author( array(
'before' => /* TRANS: author name */ ', '.T_('by').' ',
'after' => '',
'link_text' => $params['author_link_text'],
) );
$Item->categories( array(
'before' => ', '.T_('Categories').': ',
'after' => ' ',
'include_main' => true,
'include_other' => true,
'include_external'=> true,
'link_categories' => true,
) );
in skins/asevo/_item_block.inc.php
but that doesn't make any difference. Can anyone point out where I'm going wrong?
Thanks
Sounds correct. Maybe you're editing the wrong file?