Adding to content headings - Joomla! Forum - community, help and support
would appreciate commenting on doing this.
i have added content heading 1.0.13. code change have used (to content_html_php in template/components folder) shown in code snippet below (changes in blue). note not use linked headers not sure if code should have gone round row_title bit , not whole tag. please advise. choice of
i have added
content heading 1.0.13. code change have used (to content_html_php in template/components folder) shown in code snippet below (changes in blue). note not use linked headers not sure if code should have gone round row_title bit , not whole tag. please advise. choice of depends of course on used above content.
/**
* writes title
*/
function title( &$row, &$params, &$access ) {
if ( $params->get( 'item_title' ) ) {
if ( $params->get( 'link_titles' ) && $row->link_on != '' ) {
?>
title;?>
} else {
?>
title;?>
}
} else {
?>
}
}
thanks.
/**
* writes title
*/
function title( &$row, &$params, &$access ) {
if ( $params->get( 'item_title' ) ) {
if ( $params->get( 'link_titles' ) && $row->link_on != '' ) {
?>
title;?>
} else {
?>
title;?>
}
} else {
?>
}
}
thanks.
hi,
the content item using css class (contentheading), why not add h tags template css file, not have hack core files?
the content item using css class (contentheading), why not add h tags template css file, not have hack core files?
Comments
Post a Comment