Announcement

Collapse
No announcement yet.

Shipping costs

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

    Shipping costs

    Hi can anybody help?

    On the checkout page(Act 2)
    I've used the shipping prompt as available delivery days & times (we don't charge for delivery) so I've set the cost at £0.00

    This works perfectly but, it appears in the drop down box as date + cost
    Ie (Thursday 8.00-12.00 (£0.00) )

    Is there any way I can remove the cost?

    I've setup a test customer please feel free to use.

    Your test link and customer are:
    https://secure27.easyspace.com/www.f...talogbody.html

    You can login as: Customer Number 10161
    Password: password

    Thank you

    Jay Cee

    #2
    Any way I can remove the cost on shipping Prompt

    Hi Jay Cee,

    You can have that done, it requires a small script change..

    Edit ShippingTemplate.pl which is in the ShipControl folder under the
    site folder. The path usually is C://Program Files/Actinic Ecommervce V6/Sites/Site1.. where Site1 is your Site folder. Please Remember to make a backup of "ShippingTemplate.pl" and save it in another location before you start making any changes.

    Search for PriceLabelFormat, you will see...

    my $sPriceLabelFormat = ' (%s)';

    Duplicate the line.
    Comment out the first line by placing a # before it.
    Replace ' (%s)' in the second line with ''.
    Should now read...

    # my $sPriceLabelFormat = ' (%s)';
    my $sPriceLabelFormat = '';

    Save and exit. Update the site.

    Hope this helps.
    Bruce King
    SellerDeck

    Comment


      #3
      Thank you

      Hi Bruce,

      Thank you, it worked first time
      Brilliant

      Comment

      Working...
      X