5 replies
  • WEB DESIGN
  • |
i am trying to remove the title filter, display #, and # article headings from my pages but i cant do it through admin panel. i think there is a php file i can amend. can someone tell me which file or which code to edit?

the site is http://www.thepokerterms.com/poker-terminology/h.html

thanks
#joomla
  • Profile picture of the author Rankx
    Are you using the Weblink component?
    {{ DiscussionBoard.errors[5286259].message }}
  • Profile picture of the author coolspot
    no, no external components. they are categories and sections, but the type is set to url when selecting the menu / hyperlink type if thats what you mean
    {{ DiscussionBoard.errors[5286696].message }}
    • Profile picture of the author ItWasLuck3
      Joomla works a bit different than other CMS's like Wordpress so the file your looking for might change with different setups... My guess would be somewhere in the template...? But regardless, it's difficult to know exactly which file thats going to be in. I did, however, do a little searching in Firebug and dug this up... If you can find where this code is, you can remove that whole lin of info you don't want:

      Code:
      <tr>
      	<td colspan="5">
      		<table>
      		<tbody><tr>
      					<td width="60%" nowrap="nowrap" align="left">
      				Title Filter&nbsp;				<input type="text" onchange="document.adminForm.submit();" class="inputbox" value="" name="filter">
      			</td>
      							<td width="40%" nowrap="nowrap" align="right">
      			&nbsp;&nbsp;&nbsp;Display #&nbsp;<select onchange="this.form.submit()" size="1" class="inputbox" id="limit" name="limit"><option value="5">5</option><option value="10">10</option><option value="15">15</option><option selected="selected" value="20">20</option><option value="25">25</option><option value="30">30</option><option value="50">50</option><option value="100">100</option><option value="0">All</option></select>			</td>
      				</tr>
      		</tbody></table>
      	</td>
      </tr>
      {{ DiscussionBoard.errors[5287711].message }}
      • Profile picture of the author jimba
        Go to the menu item for the page and on the right side under Parameters(Basic) you can turn off the filter. I think you are stuck with the numbering unless you find a custom category list module or do a template override.

        More info here with a perfect example of template override for this case.
        Tutorial: Free Yourself With Joomla Template Overrides
        {{ DiscussionBoard.errors[5300521].message }}
  • Profile picture of the author iAmNameLess
    I think you should use an actual directory component for this instead. However, you should be able pretty easily remove the numbers.

    /templates/themza template you installed/html/com_content/category/default_items.php

    DELETE -
    <td class="sectiontableheader<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>" align="right" width="5%"
    <?php echo JText::_('Num'); ?>
    </td>

    DELETE -
    <td align="right">
    <?php echo $this->pagination->getRowOffset( $item->count ); ?>
    </td>
    {{ DiscussionBoard.errors[5305415].message }}

Trending Topics