Announcement

Collapse
No announcement yet.

Order of shipping costs

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

    Order of shipping costs

    In shipping I offer three choices
    Royal Mail first class @ £4.95
    Royal Mail second class @ £3.95
    Gt Yarmouth office Pick up free @0.00

    Tried a number of combinations but all seem to come up with “great Yarmouth Pick Up” as fist displayed postage and idiots from all over the country decide to select it. I thought it was placing them by alphabetical order but seems not the case. Any idea how I can get first class as the selection that shows on the order form

    It may be that the pick up is free that it goes first
    Chris Ashdown

    #2
    Chris,
    The best way to do this is to make the "G Yarmouth" shipping class go to the bottom of the list.
    In Business Settings | Shipping and Handling, under the Zone/Class tab, right-click the "G Yarmouth" shipping class and select properties.

    Just tick the "Display at bottom of list" option.
    Fergus Weir - teclan ltd
    Ecommerce Digital Marketing

    SellerDeck Responsive Web Design

    SellerDeck Hosting
    SellerDeck Digital Marketing

    Comment


      #3
      Thanks fergus, never thought of looking there, getting old and losing the plot these days soon be sitting on a bench in the middle of town talking to myself at this rate
      Chris Ashdown

      Comment


        #4
        Originally posted by chris ashdown View Post
        soon be sitting on a bench in the middle of town talking to myself at this rate
        At least you'll be guaranteed a sensible conversation!
        Fergus Weir - teclan ltd
        Ecommerce Digital Marketing

        SellerDeck Responsive Web Design

        SellerDeck Hosting
        SellerDeck Digital Marketing

        Comment


          #5
          In the Site 1 folder look for the folder 'ShipControl' - open it up and copy and paste the file ShippingTemplate.pl so you have a back up..Look at lines 1807-1827

          You can alter the display order of shipping options here by adding a hash to the current one and removing it from the desired one:

          Code:
           #
          # ACTINIC CUSTOMISE: Sort the shipping options
          #
          # If you would like to change the order in which shipping options are presented in the shipping
          # drop-down, comment out the line starting '@::s_arrSortedShippingHashes' and uncomment the
          # appropriate line
          #
          # Store the hashes in ascending order of total cost
          #
           @arrShippingHashes = sort{$$a{Cost} <=> $$b{Cost}} @arrShippingHashes;
          #
          # Store the hashes in descending order of total cost
          #
          # @arrShippingHashes = sort{$$b{Cost} <=> $$a{Cost}} @arrShippingHashes;
          #
          # Store the hashes in ascending alphabetical order
          #
          # @arrShippingHashes = sort{$$a{ShippingLabel} cmp $$b{ShippingLabel}} @arrShippingHashes;
          #
          # Store the hashes in descending alphabetical order
          #
          # @arrShippingHashes = sort{$$b{ShippingLabel} cmp $$a{ShippingLabel}} @arrShippingHashes;
          
          #
          Jonathan Chappell
          Website Designer
          SellerDeck Website Designer
          Actinic to SellerDeck upgrades
          Graphicz Limited - www.graphicz.co.uk

          Comment

          Working...
          X