Hi! I’d like delete the area "configuration check" that I show in Manager home page
in manager/template/default folder
I’ve welcome.tpl
but I can’t delete only "configuration check" box
Is it possible?
Thanks
-
☆ A M B ☆
- 24,524 Posts
Delete lines 44 to 52. Those are for the Configuration Check tab.
I think that my file it’s different:
<div id="modx-panel-welcome-div"></div>
<div id="welcome_tabs"></div>
<div id="modx-news">
{foreach from=$newsfeed item=article}
<div class="news_article" style="padding: 1.5em;">
<h2>
<a href="{$article.link}" target="_blank">{$article.title}</a>
</h2>
<p>{$article.description}</p>
<span class="date_stamp">{$article.pubdate|date_format}</span>
</div>
{/foreach}
</div>
<div id="modx-security">
{foreach from=$securefeed item=article}
<div class="news_article" style="padding: 1.5em;">
<h2>
<a href="{$article.link}" target="_blank">{$article.title}</a>
</h2>
{$article.description}
<span class="date_stamp">{$article.pubdate|date_format}</span>
</div>
{/foreach}
</div>
<!-- system check -->
<div id="modx-config">
<!--<img src="templates/{$_config.manager_theme}/images/icons/event2.gif" />-->
{$config_check_results}
</div>
<!-- user info -->
<div id="modx-info">
{$_lang.yourinfo_message}
<table class="classy" style="width: 100%;">
<thead>
<tr>
<th>{$_lang.yourinfo_username}</th>
<th>{$_lang.yourinfo_previous_login}</th>
<th>{$_lang.yourinfo_total_logins}</th>
</tr>
</thead>
<tbody>
<tr>
<td>{$modx->getLoginUserName()}</td>
<td>{$previous_login}</td>
<td>{$smarty.session.mgrLogincount+1}</td>
</tr>
</tbody>
</table>
</div>
<!-- online info -->
<div id="modx-online">
{$online_users_msg}
<table class="classy" style="width: 100%;">
<thead>
<tr>
<th>{$_lang.onlineusers_user}</th>
<th>{$_lang.onlineusers_userid}</th>
<th>{$_lang.onlineusers_ipaddress}</th>
<th>{$_lang.onlineusers_lasthit}</th>
<th>{$_lang.onlineusers_action}</th>
</tr>
</thead>
<tbody>
{foreach from=$ausers item=user name=’au’}
<tr class="{cycle values=’,odd’}">
<td>{$user->username}</td>
<td>{$user->internalKey}</td>
<td>{$user->ip}</td>
<td>{$user->get(’lastseen’)}</td>
<td>{$user->get(’currentaction’)}</td>
</tr>
{foreachelse}
<tr>
<th colspan="5">{$_lang.active_users_none}</th>
</tr>
{/foreach}
</tbody>
</table>
</div>
-
☆ A M B ☆
- 24,524 Posts
Then get rid of the system check div block.
Excuse me what I’ve to do??
-
☆ A M B ☆
- 24,524 Posts
Delete the following from the file:
<!-- system check -->
<div id="modx-config">
<!--<img src="templates/{$_config.manager_theme}/images/icons/event2.gif" />-->
{$config_check_results}
</div>
I tryed this but I still show the box "CONFIGURATION CHECK"
I delete the content but not the box.
Is it possible to delete also the box?
Thanks
-
☆ A M B ☆
- 24,524 Posts
Oops... I’m sorry, I didn’t notice that this is for Revolution. I have no idea what I’m talking about here.
If you fix the problems described in the configuration check, it will go away.