Found the solution in /catalog/view/theme/default/template/checkout/shipping_method.tpl
(around line 18) Find
Code: Select all
<?php echo $quote['title']; ?> - <?php echo $quote['text']; ?></label>
Change it to:
Code: Select all
<?php echo $quote['title']; ?>: <?php echo $quote['text']; ?></label>
I have the
: to the left right after the >
And in /catalog/view/theme/default/template/checkout/shipping.tpl
(Around line 100) Find:
Code: Select all
html += json['shipping_method'][i]['quote'][j]['title'] + ' - ' + json['shipping_method'][i]['quote'][j]['text'] + '</label></div>';
Change it to:
Code: Select all
html += json['shipping_method'][i]['quote'][j]['title'] + ' : ' + json['shipping_method'][i]['quote'][j]['text'] + '</label></div>';
I have the
: to the left right after the '
