risolto, ho trovato il pezzo di codice che non mi faceva passare l'informazione nel file components/com_virtuemart/views/cart/tmpl/default.php
VECCHIO CODICE
<?php if ( !empty($this->cart->pricesUnformatted[$pkey]['salesPriceShipment']) )
{
echo $this->currencyDisplay->createPriceDiv('salesPriceShipment','', $this->cart->pricesUnformatted['salesPriceShipment'],false);
} else
{
echo "--";
}
?>
NUOVO CODICE
<?php if ( !empty($this->cart->pricesUnformatted['salesPriceShipment']) )
{
echo $this->currencyDisplay->createPriceDiv('salesPriceShipment','', $this->cart->pricesUnformatted['salesPriceShipment'],false);
} else
{
echo "--";
}
?>
quando uno si incapunisce.