I have the following code on lines 125 & 127
<dd class="hidden-xs"><?php echo $text_delivery_charge; ?></dd>
<dd class="hidden-xs"><b><?php echo (isset($local_lang['text_min_total'])) ? $local_lang['text_min_total'] : lang('text_min_total'); ?>:</b><?php echo $min_total; ?></dd>
Are these correct and if so I should change to:
<dd ><?php echo $text_delivery_charge; ?></dd>
<dd><b><?php echo (isset($local_lang['text_min_total'])) ? $local_lang['text_min_total'] : lang('text_min_total'); ?>:</b><?php echo $min_total; ?></dd>
I have changed the code and it is working, Thank you.