Jump to content

Убрать статистику на главной странице

Featured Replies

Подскажите как убрать список пользователей онлайн на главной странице форума?

 

 

 

Поиском пользовался, ничего подобного нет.

 

Link to comment
https://ipbmafia.ru/topic/4613-ubrat-statistiku-na-glavnoj-stranice/
Share on other sites

найти в Global Templated

<div id="board_statistics" class="statistics clearfix">

примерно такой код и удалить весь его кусок

Link to comment
https://ipbmafia.ru/topic/4613-ubrat-statistiku-na-glavnoj-stranice/?&do=findComment&comment=34129
Share on other sites

Нет такого.

Link to comment
https://ipbmafia.ru/topic/4613-ubrat-statistiku-na-glavnoj-stranice/?&do=findComment&comment=34132
Share on other sites

ссылку на форум

Link to comment
https://ipbmafia.ru/topic/4613-ubrat-statistiku-na-glavnoj-stranice/?&do=findComment&comment=34133
Share on other sites

ошибся, ваш код в boardIndexTemplate



<div id='board_statistics' class='statistics clearfix'>
	<ul id='stat_links' class='ipsList_inline right ipsType_small'>
		<if test="statsLinks:|:1==1"> <!-- Hook point -->
			<li><a href="{parse url="app=forums&amp;module=extras&amp;section=stats&amp;do=leaders" base="public"}" title="{$this->lang->words['sm_forum_leaders_title']}">{$this->lang->words['sm_forum_leaders']}</a></li>
			<li><a href="{parse url="app=forums&amp;module=extras&amp;section=stats" base="public"}" title="{$this->lang->words['sm_all_posters_title']}">{$this->lang->words['sm_today_posters']}</a></li>
			<li><a href="{parse url="app=members&amp;module=list&amp;max_results=20&amp;sort_key=posts&amp;sort_order=desc&amp;filter=ALL" base="public" seotitle="false"}" title="{$this->lang->words['sm_overall_posters_title']}">{$this->lang->words['sm_overall_posters']}</a></li>
			<if test="reputationEnabled:|:$this->settings['reputation_enabled']">
				<li>
					<a href="{parse url="app=members&amp;module=reputation&amp;section=most" base="public" template="most_liked" seotitle="most_liked"}">
						<if test="reputationType:|:$this->settings['reputation_point_types'] == 'like'">
							{$this->lang->words['most_rep_likes']}
						<else />
							{$this->lang->words['most_rep_rep']}
						</if>
					</a>
				</li>
			</if>
		</if>
	</ul>
	
	<if test="showActive:|:$this->settings['show_active'] && $this->memberData['gbw_view_online_lists']">
		<h4 class='statistics_head'>{parse expression="sprintf( $this->lang->words['online_right_now'], $stats['TOTAL'] )"} {$this->lang->words['active_users']}</h4>
		<p class='statistics_brief desc'>
			{parse expression="sprintf( $this->lang->words['active_users_detail'], $stats['MEMBERS'], $stats['GUESTS'], $stats['ANON'] )"}
			<if test="onlineListEnabled:|:$this->settings['allow_online_list']">&nbsp;&nbsp;<a href='{parse url="app=members&amp;module=online&amp;sort_order=desc" base="public"}'>({$this->lang->words['online_link']})</a></if>
		</p>
	</if>
	<if test="activeNames:|:count($stats['NAMES']) && $this->settings['show_active']">
		<br />
		<p>
			<span class='name'>{parse expression="implode( ",</span> <span class='name'>", $stats['NAMES'] )"}</span>
		</p>
	</if>
</div>
Link to comment
https://ipbmafia.ru/topic/4613-ubrat-statistiku-na-glavnoj-stranice/?&do=findComment&comment=34136
Share on other sites

Мда.
Настройки > Advanced > Оптимизация нагрузки на сервер

Показывать активных пользователей? Нет

Link to comment
https://ipbmafia.ru/topic/4613-ubrat-statistiku-na-glavnoj-stranice/?&do=findComment&comment=34137
Share on other sites

Нашел спасибо. Но мне надо убрать только лишь список. Сам текст: "Пользователей онлайн Х" нужно оставить.

Edited by Fensmas

Link to comment
https://ipbmafia.ru/topic/4613-ubrat-statistiku-na-glavnoj-stranice/?&do=findComment&comment=34140
Share on other sites

Настройка системы > на нашел Advanced...

Advanced это Дополнительно
Link to comment
https://ipbmafia.ru/topic/4613-ubrat-statistiku-na-glavnoj-stranice/?&do=findComment&comment=34141
Share on other sites

Но мне надо убрать только лишь список. Сам текст: "Пользователей онлайн Х" нужно оставить.

Так что твой вариант не подходит...

Link to comment
https://ipbmafia.ru/topic/4613-ubrat-statistiku-na-glavnoj-stranice/?&do=findComment&comment=34146
Share on other sites
<p class='statistics_brief desc'>
			{parse expression="sprintf( $this->lang->words['active_users_detail'], $stats['MEMBERS'], $stats['GUESTS'], $stats['ANON'] )"}
			<if test="onlineListEnabled:|:$this->settings['allow_online_list']">&nbsp;&nbsp;<a href='{parse url="app=members&amp;module=online&amp;sort_order=desc" base="public"}'>({$this->lang->words['online_link']})</a></if>
		</p>
	</if>
	<if test="activeNames:|:count($stats['NAMES']) && $this->settings['show_active']">
		<br />
		<p>
			<span class='name'>{parse expression="implode( ",</span> <span class='name'>", $stats['NAMES'] )"}</span>
		</p>
	</if>
</div>

 ваш код в boardIndexTemplate

удалить

Link to comment
https://ipbmafia.ru/topic/4613-ubrat-statistiku-na-glavnoj-stranice/?&do=findComment&comment=34157
Share on other sites
  • 2 месяца спустя...

Мда.

Настройки > Advanced > Оптимизация нагрузки на сервер

Показывать активных пользователей? Нет

Но в этом случае все пользователи и в том числе администраторы не будут видеть кто онлайн. А так, чтобы у администраторов осталась возможность просмотра кто онлайн, а у остальных пользователей нет, так можно сделать? Может хук какой-то дополнительно надо установить при выключенной  функции Показывать активных пользователей?

Спасибо   

Link to comment
https://ipbmafia.ru/topic/4613-ubrat-statistiku-na-glavnoj-stranice/?&do=findComment&comment=42082
Share on other sites

chak, тут вроде то что Вам нужно:

post-4072-0-21513500-1378011748.jpg

Link to comment
https://ipbmafia.ru/topic/4613-ubrat-statistiku-na-glavnoj-stranice/?&do=findComment&comment=42214
Share on other sites

Спасиба, большое. Именно то, что нужно.

Link to comment
https://ipbmafia.ru/topic/4613-ubrat-statistiku-na-glavnoj-stranice/?&do=findComment&comment=42219
Share on other sites
Guest
This topic is now closed to further replies.

Последние посетители 0

  • No registered users viewing this page.