Announcement

Collapse
No announcement yet.

Removing the price from the Shipping And Handling dropdown

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

    Removing the price from the Shipping And Handling dropdown

    Hi

    During the Shipping And Handling stage of checkout I have set-up to UK shipping options (Class of Service) - Free and Next Day Delivery which are displayed in the dropdown like this:

    Free Delivery: 2-3 days (£0.00)
    Next Day Delivery (£3.50)

    However I would like to remove the (£0.00). Is this possible?

    I would prefer to remove only the (£0.00) but if I have to remove both (£0.00) and (£3.50) then this would do.

    Any advice would be appreciated.

    Paul
    KJ Beckett
    Men's Clothing & Accessories
    Cufflinks, Underwear, Ties, Grooming Products
    Bath, England
    Fast delivery to UK, USA and worldwide.
    Men's Fashion Blog

    #2
    Hi Paul,

    Apologies for the delay in getting to this thread.

    You will need to make a change to the shipping script. Go to C:\Program Files\Actinic v7\Sites\Site1\ShipControl and open ShippingTemplate.pl with notepad.

    Search for 'sub RestoreFinalUI'

    A few lines below you should see
    #
    # Advanced mode
    #
    This is followed by
    my ($phashShipping, $sClassLabel, $sClassID);
    my ($sSelectHTML) = "N/A";
    my $sPriceLabelFormat = ' (%s)';
    Change to read
    my ($phashShipping, $sClassLabel, $sClassID);
    my ($sSelectHTML) = "N/A";
    my $sPriceLabelFormat = ' '; #(%s) - Mod Bruce
    Save the file and close. Update the site and you should see that the brackets with teh price have gone from against the shipping option dropdown.

    Kind regards,
    Bruce King
    SellerDeck

    Comment

    Working...
    X