Do not Show Summary on Story Pages - Joomla! Forum - community, help and support
currently when click read more story on front page, , go the content page given story, see whatever in summary box repeated.
is there simple way ensure summery in not shown again? see there option in joomla 1.5, unfortunately still breaks lot of other things.
if there no such option may able want directly hacking content.html.php, messy, , i'd avoid it.
--
i see on line 1709 of content.php
it looks there way show story without intro text, still not sure how make work.
is there simple way ensure summery in not shown again? see there option in joomla 1.5, unfortunately still breaks lot of other things.
if there no such option may able want directly hacking content.html.php, messy, , i'd avoid it.
--
i see on line 1709 of content.php
code: select all
// show/hides intro text
if ( $params->get( 'introtext' ) ) {
$row->text = $row->introtext. ( $params->get( 'intro_only' ) ? '' : chr(13) . chr(13) . $row->fulltext);
} else {
$row->text = $row->fulltext;
}
it looks there way show story without intro text, still not sure how make work.
you don't need work on code.
just open content item in backend. on right side select "parameters" , set "intro text: hide".
just open content item in backend. on right side select "parameters" , set "intro text: hide".
Comments
Post a Comment