As known we are modifying some parts of template’s index.php if we show ja-news on frontpage. If it is the case how can we remove pathway “You are here: Home” for just homepage not for the other parts?
Thank you.
<?php
global $mainframe, $option;
$m_menu = $mainframe->get( "menu" );
$m_params = new mosParameters( $m_menu->params );
$m_intro = $m_params->def( "intro", 4 );
$m_leading = $m_params->def( "leading", 1 );
if ( $option != "com_frontpage" || $m_intro || $m_leading) {
?>
<?php mosMainBody(); ?>
<?php } ?>
<?php if ( mosCountModules("ja-news") ) { ?>
<div id="ja-newswrap">
<?php mosLoadModules ( "ja-news", -2 ); ?>
</div>
<?php } ?>