MyBB Community Forums

Full Version: View Unread Posts
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
Hi,

I have tweak my template (square) to add this line in a menu of my forum (http://forum.ajil-asso.fr) :                    
<li><a href="{$mybb->settings['bburl']}/search.php?action=unreads"><i class="fa fa-asterisk fa-2x"></i>
<br />Non-lus {$unreadPostsCounter}</a></li>

The counter doesn't show up.

Option to show counter in ACP is set to on.

Does anybody knows what I am doing wrong ?
You use wrong code.
It should be:

<li><a href="{$mybb->settings['bburl']}/search.php?action=unreads"><i class="fa fa-asterisk fa-2x"></i>
<br />Non-lus <!-- UNREADPOSTS_LINK --></a></li>
Thank you for your answer.

This way the counter shows up but it messes the display :
[Image: mini_938347unread.png]

Is there a way to have only the counter like (%) ?

Non-lus mean unread in french.
Edit the unreadPosts_linkCounter template

Initial:
 | <a href="{$mybb->settings['bburl']}/search.php?action=unreads">{$lang->unreadPostsLink} {$unreadPostsCounter}</a>

After:
<a href="{$mybb->settings['bburl']}/search.php?action=unreads">{$unreadPostsCounter}</a>
Thanks a lot,

I got what I need!
can this version used in mybb 1.6.16?
(2015-04-27, 03:51 AM)hkkp Wrote: [ -> ]can this version used in mybb 1.6.16?



nope on lukasamd github should be version for 1.6
hello,

the version for mybb 1.6.16 have a Bug.

subscribed topics Will Not as Read markiert in UserCP. Have a Fix? the functions_indicator.php seems to be the guilty!
push it.... salt 'n' peppa Big Grin
the version for 1.8

<td align="left" valign="top"><a href="misc.php?action=markread{$post_code_string}" "class="smalltext">{$lang->unreadPostsMarkAllRead}</a></td>

unreadPosts_markAllReadLink - template
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49