Announcement

Collapse
No announcement yet.

shipping cost on product layout

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

    shipping cost on product layout

    Before I reinvent the wheel - has anyone written any code that will display a products associated delivery cost on the product layout - shipping by weight

    ie you'll need to keep it simple and say something like if this product is shipped on its own the cost will be £x.xx

    and look up the cost in the shippping table

    indeed can it be done/

    #2
    Jo,

    I am running this past development for you. Will keep you posted.

    Kind regards,
    Bruce King
    SellerDeck

    Comment


      #3
      Originally posted by pinbrook
      Before I reinvent the wheel - has anyone written any code that will display a products associated delivery cost on the product layout - shipping by weight

      ie you'll need to keep it simple and say something like if this product is shipped on its own the cost will be £x.xx

      and look up the cost in the shippping table

      indeed can it be done/
      I would be interested in that too !
      Steve Jordan
      -----------------------------
      Error 404 - Page not found

      Sellerdeck V11.03 - Business - Actinic Payments -
      Sage Accounts 50 V16 2012 Sellerdeck Link

      Acacia Masonic Regalia Masonic Regalia Masonic Forum

      Comment


        #4
        I will have to add this to the wish list as the shipping is calculated at a later stage and needs perl interaction etc.

        I have added votes for both of you.

        Kind regards,
        Bruce King
        SellerDeck

        Comment


          #5
          Has this moved forward since this last post?
          http://www.smarterproducts.co.uk

          Comment


            #6
            yep... i did it here - but its hardcoded using blockifs. if you change your shipping tables you'll have to change this too.
            Code:
             When shipped on its own, delivery cost (UK) for this item is:  
                     <actinic:block if="%3cactinic%3avariable%20name%3d%22ShippingWeight%22%20%2f%3e%20%20%3e%200%2e00%20and%20%3cactinic%3avariable%20name%3d%22ShippingWeight%22%20%2f%3e%20%20%3c%3d%200%2e12" >
            	         £1.50
                     </actinic:block>
                     <actinic:block if="%3cactinic%3avariable%20name%3d%22ShippingWeight%22%20%2f%3e%20%20%3e%200%2e12%20and%20%3cactinic%3avariable%20name%3d%22ShippingWeight%22%20%2f%3e%20%20%3c%3d%200%2e25" >
            	         £1.95
                     </actinic:block>
                     <actinic:block if="%3cactinic%3avariable%20name%3d%22ShippingWeight%22%20%2f%3e%20%20%3e%200%2e25%20and%20%3cactinic%3avariable%20name%3d%22ShippingWeight%22%20%2f%3e%20%20%3c%3d%200%2e5">
            	        £2.50 
                     </actinic:block>
                     <actinic:block if="%3cactinic%3avariable%20name%3d%22ShippingWeight%22%20%2f%3e%20%20%3e%200%2e50%20and%20%3cactinic%3avariable%20name%3d%22ShippingWeight%22%20%2f%3e%20%20%3c%3d%200%2e75">
            	         £2.95
                     </actinic:block>
                     <actinic:block if="%3cactinic%3avariable%20name%3d%22ShippingWeight%22%20%2f%3e%20%20%3e%200%2e75%20and%20%3cactinic%3avariable%20name%3d%22ShippingWeight%22%20%2f%3e%20%20%3c%3d%201%2e00">
            	         £3.50
                     </actinic:block>
                     <actinic:block if="%3cactinic%3avariable%20name%3d%22ShippingWeight%22%20%2f%3e%20%20%3e%201%2e00%20and%20%3cactinic%3avariable%20name%3d%22ShippingWeight%22%20%2f%3e%20%20%3c%3d%201%2e05">
            	         £4.50
                     </actinic:block>
                     <actinic:block if="%3cactinic%3avariable%20name%3d%22ShippingWeight%22%20%2f%3e%20%20%3e%201%2e05%20and%20%3cactinic%3avariable%20name%3d%22ShippingWeight%22%20%2f%3e%20%20%3c%3d%201%2e25">
            	         £6.95
                     </actinic:block></b>
                     <br>Total shipping costs are shown in the checkout before you commit to purchase.<br>

            you can see it at surf-wax dot co dot uk/acatalog/aerobie-orbiter-boomerang.html

            it will display the assosicate cost for the product, it can not add up to give a total cost when ordering more than one product

            Comment

            Working...
            X