Ho trovato queste utilissime (anche se brutali) istruzioni. Spero possano esservi di aiuto
Finalmente ho potuto rimuovere filtro, tendina e pure la numerazione ordinale dell'articolo.
http://forum.joomla.org/viewtopic.php?f=431&t=320453Hi. One way would be with a template override. Here is a link with basic information:
http://docs.joomla.org/How_to_override_the_output_from_the_Joomla!_core The file you need to override is components/com_weblinks/views/category/tmpl/default_items.php.
It looks like lines 14-21 display the limit drop-down, as follows:
Codice:
<tr>
<td align="right" colspan="4">
<?php
echo JText::_('Display Num') .' ';
echo $this->pagination->getLimitBox();
?>
</td>
</tr>
It looks like lines 24-26 display the column heading for the number column:
Codice:
<td width="10" style="text-align:right;" class="sectiontableheader<?php echo $this->params->get( 'pageclass_sfx' ); ?>">
<?php echo JText::_('Num'); ?>
</td>
And lines 40-42 display the row number:
Codice:
<td align="right">
<?php echo $this->pagination->getRowOffset( $item->count ); ?>
</td>
To do this as a template override, you'll want to copy this file to the folder templates/<your template>/html/com_weblinks/category/default_items.php.
A great way to learn about template overrides is to install the joomla sample website and play with the beez template. This has overrides for this file and most other content types. Good luck. Mark