Find this in the index.php file:
<?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 } ?>
Cut, and then find this:
<div id="ja-content">
Paste it below so it will look like this:
<div id="ja-content">
<?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('vm-fp') ) { ?>
<!-- BEGIN: FEATURE PRODUCTS -->
<div id="ja-feature">
<div id="ja-feature-products">
<?php mosLoadModules('vm-fp', -1); ?>
</div>
</div>
<!-- END: FEATURE PRODUCTS -->
<?php } ?>