I have a problem with installation view_or_mark_unread_posts on this style.
I have tried to change those but my forum disappears. Can you give me an answer where to place what?
Thanks in advance

Open: styles/prosilver/template/index_body.html
Find
Tip: This may be a partial find and not the whole line.Code: Select all
<li><a href="{U_SEARCH_UNANSWERED}">
In-line Find
Tip: This is a partial match of a line for in-line operations.Code: Select all
<a href="{U_SEARCH_UNREAD}">{L_SEARCH_UNREAD}</a>
In-line Replace withCode: Select all
<!-- IF S_EXISTS_UNREADS --><a href="{U_SEARCH_UNREAD}">{L_SEARCH_UNREAD}</a><!-- ELSE --><a href="{U_SEARCH_UNREAD}">{L_NO_UNREADS}</a><!-- ENDIF -->
Add after
Tip: Add these lines on a new blank line after the preceding line(s) to find.Code: Select all
<!-- start mod view or mark unread posts (and end mod too) ... added code in preceding line to toggle link text between view unread and no unreads -->
Open: styles/prosilver/template/ucp_pm_viewmessage.html
Find
Tip: This may be a partial find and not the whole line.Code: Select all
<div class="back2top"><a href="#top" class="top" title="{L_BACK_TO_TOP}">{L_BACK_TO_TOP}</a></div>
In-line Find
Tip: This is a partial match of a line for in-line operations.Code: Select all
{L_BACK_TO_TOP}</a>
In-line Add afterCode: Select all
<a href="{U_MARK_UNREAD}" class="post" title="{L_MARK_PM_UNREAD}">{L_MARK_PM_UNREAD}</a>
Add after
Tip: Add these lines on a new blank line after the preceding line(s) to find.Code: Select all
<!-- start mod view or mark unread posts (and end mod too) ... added mark_pm_unread references in the preceding line -->