Open ./language/en/common.php and find:I need to have number of users online for statistics block in my index_body template, only the number not the whole string which is {{ TOTAL_USERS }} How can this be done?
Code: Select all
// "... :: x registered, y hidden and z guests"
'ONLINE_USERS_TOTAL_GUESTS' => array(
1 => 'In total there is <strong>%1$d</strong> user online :: %2$s, %3$s and %4$s',
2 => 'In total there are <strong>%1$d</strong> users online :: %2$s, %3$s and %4$s',
),
Code: Select all
// "... :: x registered, y hidden and z guests"
'ONLINE_USERS_TOTAL_GUESTS' => array(
1 => 'User online <strong title="%2$s, %3$s and %4$s">%1$d</strong>',
2 => 'Users online <strong title="%2$s, %3$s and %4$s">%1$d</strong>',
),