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

(Instructions)
Line 3: Line 3:
  
 
==Instructions==
 
==Instructions==
# Navigate to ''ROOT/components/com_community/templates/default/application.item.php'' find this code and delete it:
+
# Navigate to ''ROOT/components/com_community/templates/jomsocial/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>
+
<span class="joms-text--light"><?php echo $this->escape( JText::_( $app->description ) ); ?></span>
 +
</syntaxhighlight>
 +
 
 +
and delete this code :
 +
<syntaxhighlight lang="php">
 +
<p><?php echo $this->escape($app->description); ?></p>
 
</syntaxhighlight>
 
</syntaxhighlight>
 
<br/>
 
<br/>
  
# Navigate to ''ROOT/components/com_community/templates/default/apps.about.php'' find this code and delete it:
+
# Navigate to ''ROOT/components/com_community/templates/jomsocial/apps.about.php'' find this code and delete it:
 
<syntaxhighlight lang="php">
 
<syntaxhighlight lang="php">
<td class="label"><?php echo JText::_('COM_COMMUNITY_APPS_DESCRIPTION');?></td>
+
<div class="joms-form__group">
<td class="field"><?php echo $this->escape( JText::_( $app->description ) ); ?></td>
+
    <span ><?php echo JText::_('COM_COMMUNITY_APPS_DESCRIPTION');?></span>
 +
    <?php echo $this->escape( JText::_( $app->description ) ); ?>
 +
</div>
 
</syntaxhighlight>
 
</syntaxhighlight>
 
<br/>
 
<br/>

Revision as of 03:00, 8 June 2015

Overview

This hack will remove showing description of the application

Instructions

  1. Navigate to ROOT/components/com_community/templates/jomsocial/application.item.php find this code and delete it:
<span class="joms-text--light"><?php echo $this->escape( JText::_( $app->description ) ); ?></span>

and delete this code :

<p><?php echo $this->escape($app->description); ?></p>


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


See Also

Remove JomSocial from URL Translate Plugin