Re: Hard Cover Tute: Have PM message been read or not.
Vremni Good day!
I have version 2.5.3
Earned when done like this:
Open your lib.account_messages.php and find:
$fields[$i]['message_id'] = $obj['message_id'];And add below it:
$fields[$i]['message_nonread'] = $obj['new'];Open your account_messages_sent.tpl and find:
<a href="{top.virtual_path}{message_link}">{trim:message_subject,75}</a>And add:
<sup><!-- IF message_new -->Non-read<!-- ELSE -->Read<!-- ENDIF --></sup>Patterns (trim: message_subject, 75) with the number 75 may change to 90
And in general should get like this:
<a href="{top.virtual_path}{message_link}">{trim:message_subject,75}</a> <sup><!-- IF message_new -->Non-read<!-- ELSE -->Read<!-- ENDIF --></sup>or like this
<a href="{top.virtual_path}{message_link}">{trim:message_subject,90}</a> <sup><!-- IF message_new -->Non-read<!-- ELSE -->Read<!-- ENDIF --></sup>