Recent Topics

1 Nov 20, 2008 10:06    

My b2evolution Version: Not Entered

Hello,

when user is logged in, he can edit/delete his post/comment, i have icons next to words edit/delete, but i need to hide these words to have only icons. Can annyone help me to find where are these?

thanx
Ben

2 Nov 29, 2008 09:17

Change the following in post edit link

$Item->edit_link( array( // Link to backoffice for editing
		'before'    => ' | ',
		'after'     => '',
		'text'     => get_icon('edit'),
		'title'     => T_('Edit'),
	) );

and for comments in skins/_item_comment.inc.php

$Comment->edit_link( '', '', get_icon('edit'), T_('Edit'), 'permalink_right' );
$Comment->delete_link( '', '', get_icon('delete'), T_('Delete'), 'permalink_right' );


Form is loading...