First of all, delete this file from the je_mira dir: j00035tabcontent_05_tariffs.class.php and rebuild registry.
Edit j00035tabcontent_01_main_details.class.php and remove:
// j01020 tariffs (either the verbose or the compact view, depending on General Config)
if ($mrConfig['is_real_estate_listing']=="0" && !get_showtime('is_jintour_property'))
{
if ($mrConfig['showTariffsInline']=="1")
{
//$anchor = ereg_replace("[^A-Za-z0-9]", "", $output['TITLE_TARIFF']);
$anchor = jomres_generate_tab_anchor($output['TITLE_TARIFF']);
$tariffslist[] = array('TARIFFS_LIST_TITLE'=>$output['TITLE_TARIFF'],'INLINE_TARIFFS'=>$MiniComponents->miniComponentData['01020']['showtariffs'],'TITLE_TARIFF_ANCHOR'=>$anchor);
$tariffslist_anchor[0]['TITLE_TARIFF']=$tariffslist[0]['TARIFFS_LIST_TITLE'];
$tariffslist_anchor[0]['TITLE_TARIFF_ANCHOR']=$anchor;
}
}
and
if ($mrConfig['is_real_estate_listing']=="0" && !get_showtime('is_jintour_property'))
{
$tmpl->addRows( 'tariffslist', $tariffslist );
$tmpl->addRows( 'tariffslist_anchor', $tariffslist_anchor );
}
Then edit /je_mira/frontend/tabcontent_01_main_details.html and remove:
<patTemplate:tmpl name="tariffslist" type="simpleCondition" requiredVars="tariffs_list_title">
<div class="htitle">
<h3>{TARIFFS_LIST_TITLE}</h3>
</div>
{INLINE_TARIFFS}
</patTemplate:tmpl>
It should work...but I haven`t tested this.