non vedo questo bottone in
catalog/includes/boxes/shoping_cart.php. Invece sta il text link

ho agguinto il codice necessario per la Contrib Switch between displaying prices Inc./Ex. VAT
//-- ==== START CONTRIBUTION "Switch between displaying prices Inc./Ex. VAT" ===================================-->
$info_box_contents = array();
if ($vat_disp == '1') {
$info_box_contents[] = array('align' => 'center', 'text' => SWITCHING_VAT_DISPLAYED . '<br><b>' . SWITCHING_VAT_INC . '</b>');
} else {
$info_box_contents[] = array('align' => 'center', 'text' => SWITCHING_VAT_DISPLAYED . '<br><b>' . SWITCHING_VAT_EX . '</b>');
}
if ($vat_disp == '1') {
$info_box_contents[] = array('align' => 'center', 'text' => '<a href="' . tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('language', 'currency', 'vat_disp')) . 'vat_disp=0') . '">' . tep_image_button('button_inc_ex_vat', SWITCHING_VAT_CHANGE_TO_EX) . '</a>');
} else {
$info_box_contents[] = array('align' => 'center', 'text' => '<a href="' . tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('language', 'currency', 'vat_disp')) . 'vat_disp=1') . '">' . tep_image_button('button_inc_ex_vat', SWITCHING_VAT_CHANGE_TO_INC) . '</a>');
}
new infoBox($info_box_contents);
//-- ==== FINISH CONTRIBUTION "Switch between displaying prices Inc./Ex. VAT" ===================================-->
Mi sono confuso completamente. Quale pottrebbe essere il problemma?
A qualcuno è capitato qualcosa di simile?
Vi ringrazio in anticipo.