How do I remove the Title Filter and Display # from the Category List within Joomla ?
VendorOpen Source Matters
PlatformJoomla
Version1.5.x
Tuesday, 16 February 2010 15:52

In order to remove the  Title Filter and Display # from the Category list remove the following code from the file \templates\[your-template]\html\com_content\category\default-items.php

<?php if ($this->params->get('filter') || $this->params->get('show_pagination_limit')) : ?>
<tr>
   <td colspan="5">
      <table>
      <tr>
      
         <td align="left" width="60%" nowrap="nowrap">
            
            <input type="text" name="filter" value="" class="inputbox" onchange="document.adminForm.submit();" />
         </td>
      
      
         <td align="right" width="40%" nowrap="nowrap">
         <?php
            echo '   '.JText::_('Display Num').' ';
            echo $this->pagination->getLimitBox();
         ?>
         </td>
      <?php endif; ?>
      </tr>
      </table>
   </td>
</tr>
<?php endif; ?>
 

Further references can be found here : http://forum.joomla.org/viewtopic.php?f=428&p=2037303



 
We have 43 guests online