Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 4 of 4

Thread: Free Shipping with minimum of 2 products purchased

  1. #1
    saltysupply is offline Junior Member
    Join Date
    Jan 2010
    Posts
    9

    Default Free Shipping with minimum of 2 products purchased

    we are looking to offer free shipping over $140 with orders that purchase at least 2 products. Is this possible with the current configuration?

  2. #2
    John Reasons is offline Senior Member
    Join Date
    Oct 2009
    Posts
    119

    Default

    You could set the free shipping threshold over $140

    FreeShippingThreshold

    Base Description: If set to a dollar amount, without leading $ sign, e.g. 100.00, then orders equal to or greater than this amount will have free shipping. A value of 0.00 also disables this feature.
    Default Value: N/A
    More Information: See this page for information on free shipping options.

    Then set it so that MinCartItemsBeforeCheckout is 2, though this means that all customers will need to purchase two items before they can checkout.

    MinCartItemsBeforeCheckout

    Base Description: Minimum # of items a user must have in their cart, before they can checkout. Sum of cart quantity > this value. Can be from any item in the store.
    Default Value: 1
    More Information: This can be used to force customers to purchase at least X items. Useful for wholesale sites.

    Otherwise you would need to modify the shipping class free shipping threshold method to check cart item count and return true or false if it does not meet your specific rule.

  3. #3
    saltysupply is offline Junior Member
    Join Date
    Jan 2010
    Posts
    9

    Default

    thank you very helpful!

  4. #4
    saltysupply is offline Junior Member
    Join Date
    Jan 2010
    Posts
    9

    Default

    can you shoot me some code so that if over $140 and 2 items free shipping. if under $140 it shows a shipping option of $44.99...not sure really how to set that up.