MyBB Community Forums

Full Version: Numbered Threads
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Example: (Inspect element) https://u.nya.is/jybqhf.png
You have to put it in a loop, like:
$threadnum = 1;
while ($threadnum <= 10)
{
 echo $threadnum.'<br />';
 $threadnum++;
}
^ That works, do you know how to get it into forumdisplay_thread along each thread without it repeating the same number?
You can't include it into threadlist without plugin....you can't use PHP functions in templates.
(2017-02-25, 07:39 PM)SvePu Wrote: [ -> ]You can't include it into threadlist without plugin....you can't use PHP functions in templates.

http://mybbhacks.zingaburga.com/showthread.php?tid=464 I was using this? Echoing $threadnum in threadlist
sorry....I never worked with this plugin.
Anyone want to make a plugin for this, if one is needed?