Are you plan to make it in ACP in future ?RMcGirr83 wrote:Open the index_body_stats_block_after.html file, find this line
<!-- IF not S_IS_BOT -->
and change it to this
<!-- IF U_ACP -->
You will need to purge the cache after making that change.
Code: Select all
<?php
/**
*
*
* @package - Activity 24 hours
* @copyright (c) 2015 RMcGirr83
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
if (!defined('IN_PHPBB'))
{
exit;
}
if (empty($lang) || !is_array($lang))
{
$lang = array();
}
// DEVELOPERS PLEASE NOTE
//
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
//
// Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct
//
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
// Some characters you may want to copy&paste:
// ’ » “ ” …
$lang = array_merge($lang, array(
'USERS_24HOUR_TOTAL' => array(
1 => '%d عضو',
2 => '%d عضو',
),
'GUEST_ONLINE_24' => array(
1 => ' و %d زائر',
2 => ' و %d زائر',
),
'LAST_24_HOURS' => ' نشطوا خلال 24 ساعة الماضية',
'24HOUR_TOPICS' => 'المواضيع الجديدة %d',
'24HOUR_POSTS' => 'المشاركات الجديدة %d',
'24HOUR_USERS' => 'الأعضاء الجدد %d',
'TWENTYFOURHOUR_STATS' => 'النشاط خلال 24 ساعة الماضية',
));
+1 lolStoker 4.0 wrote:Req for splitting bots and users
What setting do you think is needed?BF79 wrote:where is setting of ext after we enable it ??
I just noticed that Registered users who visit the forum today again and again (exp me) aren't in time of visit descending !!RMcGirr83 wrote:What setting do you think is needed?BF79 wrote:where is setting of ext after we enable it ??