Hi,
This is actually not possible by default, you will have to add some custom code to display this value.
Code like:
<?php
$db = JFactory::getDBO();
$db->setQuery('SELECT * FROM '.hikashop_table('shipping_price').' WHERE shipping_price_ref_id = '.(int)$this->element->product_id);
$shippingPrices = $db->loadObjectList();
$currencyHelper = hikashop_get('helper.currency');
$mainCurr = $currencyHelper->mainCurrency();
$app = JFactory::getApplication();
$currCurrency = $app->getUserState( HIKASHOP_COMPONENT.'.currency_id', $mainCurr );
foreach($shippingPrices as $shippingPrice){
$priveValue = (float)$shippingPrice->shipping_price_value + (float)$shippingPrice->shipping_fee_value;
echo $currencyHelper->format($priveValue,$currCurrency);
}
?>