Show Intro Text for Articles in a Category Listing - Joomla! Forum - community, help and support
i have category listing landing page show little bit of intro text each article included in category list. what's best way accomplish in joomla 3?
you edit file default_articles.php located in directory \components\com_content\views\category\tmpl.
the following line of code show intro text.
you may have add appropriate column header column.
a sample generated code shown below:
note:
(a) being core joomla! file, instead of editing file directly, suggest using html output override technique. review of following documents of help:
http://docs.joomla.org/how_to_override_the_output_from_the_joomla!_core
http://docs.joomla.org/understanding_output_overrides
(b) template using may have override file. if case, have edit file. make sure take copy of file before editing it.
the following line of code show intro text.
code: select all
<td>
<?php
echo $article->introtext;
?>
</td>
you may have add appropriate column header column.
a sample generated code shown below:
note:
(a) being core joomla! file, instead of editing file directly, suggest using html output override technique. review of following documents of help:
http://docs.joomla.org/how_to_override_the_output_from_the_joomla!_core
http://docs.joomla.org/understanding_output_overrides
(b) template using may have override file. if case, have edit file. make sure take copy of file before editing it.
Comments
Post a Comment