The Arcive of vBulletin Modifications Site. |
|
How Do I... Details »»
|
|||||||||||||||||||||||||
I have over 10,000 games in my arcade and I noticed that it doesn't have a comma rather it says:
10000 How would I go about adding a comma? I know it may be rather picky of me, but I just feel it would look more professional for some reason. Thanks. Show Your Support
|
|||||||||||||||||||||||||
| Comments |
|
#2
|
||||
|
||||
|
Open your skin_Arcade.php and look for:
Code:
$totalstext = $ibforums->lang['infobox_title1'].$tot_games.$ibforums->lang['infobox_title2']; Code:
$totalstext = $ibforums->lang['infobox_title1'].number_format($tot_games).$ibforums->lang['infobox_title2']; Open mod_report.php and search for: Code:
$ibforums->lang['total_games'] => $totalgames,
$ibforums->lang['total_i_play'] => $gamesplayed,
$ibforums->lang['total_play'] => $totalgamesplayed,
);
Code:
$ibforums->lang['total_games'] => number_format($totalgames),
$ibforums->lang['total_i_play'] => number_format($gamesplayed),
$ibforums->lang['total_play'] => number_format($totalgamesplayed),
);
|
|
#3
|
|||
|
|||
|
Thank you, Gemma.
Greatly appreciated! |
![]() |
|
|