Page 1 of 1

Removing the <strong> in statistics blog

Posted: 13. June 2009 00:26
by Parkstee
Your Portal Version: 1.0.0RC3
Your phpBB Type: Standard phpBB3
MODs installed: Yes
Your knowledge: Basic Knowledge
Boardlink: http://parksteels.co.uk

What have you done before the problem was there?
n/a

What have you already tryed to solve the problem?
looked in language files

Description and Message
I'm wanting to remove the bold (<strong>) from the numbers in the statistics blog, I have looked in the common language file but can't seem to find the right file to remove the <strong> from the following:
Topics per day: 1
Posts per day: 16
Users per day: 0
Topics per user: 5
Posts per user: 65
Posts per topic: 13

Re: Removing the <strong> in statistics blog

Posted: 13. June 2009 11:12
by Marc
Open styles/*yourstyle*/template/portal/block/statistics.html

You can remove the <strong> in that file.

edit: Ah sorry, now I see what you mean. Wait a little bit. ;)

edit2: Open language/en/mods/lang_portal.php
Find:

Code: Select all

    // average Statistics
    'TOPICS_PER_DAY_OTHER'    => 'Topics per day: <strong>%d</strong>',
    'TOPICS_PER_DAY_ZERO'    => 'Topics per day: <strong>0</strong>',
    'POSTS_PER_DAY_OTHER'    => 'Posts per day: <strong>%d</strong>',
    'POSTS_PER_DAY_ZERO'    => 'Posts per day: <strong>0</strong>',
    'USERS_PER_DAY_OTHER'    => 'Users per day: <strong>%d</strong>',
    'USERS_PER_DAY_ZERO'    => 'Users per day: <strong>0</strong>',
    'TOPICS_PER_USER_OTHER'    => 'Topics per user: <strong>%d</strong>',
    'TOPICS_PER_USER_ZERO'    => 'Topics per user: <strong>0</strong>',
    'POSTS_PER_USER_OTHER'    => 'Posts per user: <strong>%d</strong>',
    'POSTS_PER_USER_ZERO'    => 'Posts per user: <strong>0</strong>',
    'POSTS_PER_TOPIC_OTHER'    => 'Posts per topic: <strong>%d</strong>',
    'POSTS_PER_TOPIC_ZERO'    => 'Posts per topic: <strong>0</strong>', 

Re: Removing the <strong> in statistics blog

Posted: 13. June 2009 11:33
by Parkstee
Thanks :D