Difference between revisions of "Remove description field from app info"

(Created page with "==Overview== This hack will remove showing description of the application ==Instructions== Navigate to ''ROOT/components/com_community/templates/default/application.item.php'...")
 
Line 3: Line 3:
  
 
==Instructions==
 
==Instructions==
Navigate to ''ROOT/components/com_community/templates/default/application.item.php'' and find this code and delete it.
+
# Navigate to ''ROOT/components/com_community/templates/default/application.item.php'' find this code and delete it:
 
<syntaxhighlight lang="php">
 
<syntaxhighlight lang="php">
 
<div class="cApp-Description"><?php echo $this->escape($app->description); ?></div>
 
<div class="cApp-Description"><?php echo $this->escape($app->description); ?></div>
 
</syntaxhighlight>
 
</syntaxhighlight>
 
<br/>
 
<br/>
 +
 +
# Navigate to ''ROOT/components/com_community/templates/default/apps.about.php'' find this code and delete it:
 +
<syntaxhighlight lang="php">
 +
<td class="label"><?php echo JText::_('COM_COMMUNITY_APPS_DESCRIPTION');?></td>
 +
<td class="field"><?php echo $this->escape( JText::_( $app->description ) ); ?></td>
 +
</syntaxhighlight>
 +
<br/>
 +
 +
==See Also==
 +
[[Remove JomSocial from URL]]
 +
[[Translate Plugin]]

Revision as of 14:29, 2 August 2014

Overview

This hack will remove showing description of the application

Instructions

  1. Navigate to ROOT/components/com_community/templates/default/application.item.php find this code and delete it:
<div class="cApp-Description"><?php echo $this->escape($app->description); ?></div>


  1. Navigate to ROOT/components/com_community/templates/default/apps.about.php find this code and delete it:
<td class="label"><?php echo JText::_('COM_COMMUNITY_APPS_DESCRIPTION');?></td>
<td class="field"><?php echo $this->escape( JText::_( $app->description ) ); ?></td>


See Also

Remove JomSocial from URL Translate Plugin