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
Removing the <strong> in statistics blog
Forum rules
Before creating a new support thread, please take a look in the board3 Portal FAQ and use the search!
Many questions have already been answered.
Before creating a new support thread, please take a look in the board3 Portal FAQ and use the search!
Many questions have already been answered.
-
- Dev
- Posts: 2504
- Joined: 17. July 2008 21:08
- phpBB.de User: marc1706
- phpBB.com User: Marc
- Location: Clausthal-Zellerfeld / München
- Contact:
Re: Removing the <strong> in statistics blog
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:
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>',