Announcement

Collapse
No announcement yet.

Shipping cost brackets

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Shipping cost brackets

    Hello

    Where would i find the code that controls the shipping cost amount.

    I would like to remove the brackets that surrond the actual price ie ($2.30) displayed in the shipping part of the checkout. I am set up to have a basic cost (for 1 product), and an additional cost for subsequent products.

    Thank you

    Steven

    #2
    Hi Steve,

    To remove the brackets from around the shipping costs, open ShippingTemplate.pl (which can be found in the 'ShipControl' folder in your site folder) in a text editor such as notepad and search for:

    my $sPriceLabelFormat = ' (%s)';

    remove the brackets so it looks like:

    my $sPriceLabelFormat = ' %s';

    Close and save the file and update the site.
    ********************
    Tracey
    SellerDeck

    Comment


      #3
      Thanks Tracy

      Looks good

      Steven

      Comment

      Working...
      X