• Resolved lukiano880

    (@lukiano880)


    Hi. I have some ranges of weight:
    0 to 1 = $100
    1 to 2 = $200
    ….
    10 to … = Abort
    Works as i want , but i need exclude a one shipping class of shipping calculation, so add a rule:
    “In shipping class – > Myclass” = $0
    I tried severals configurations, but i dont make it.
    The log show that “myclass” products have no shipping cost, but if other products are in the same cart, “myclass” products increse the total wight of the cart

    Rule #5
          . Ungrouped, checking: #295 producto 3kgs, result: [FALSE]
    
          . Ungrouped, checking: #35 producto 2kgs gratis caba, result: [TRUE]
    
        Currently matching products (accumulated checkings result):
    
          Non-grouped > items: 1
    
            . producto 2kgs gratis caba (1)
    
        Composite cost (once + qty + weight + group + %): 0 + 0*1 + 0*2 + 0*1 + 200*0% = 0
    
      – Calculated rule #5 cost: $0<code></code>
    Rule #6
          Grouped [all] calculating: [by-weight]
    
            + #295 producto 3kgs (3 * 2) accumulated: 6
    
            + #35 producto 2kgs gratis caba (2 * 1) accumulated: 8 ***these products should not add weight to the cart ***
    
        Currently matching products (accumulated checkings result):
    
          all > > items: 2
    
            . producto 3kgs (2)
    
            . producto 2kgs gratis caba (1) 
    
      – Calculated rule #6 cost: $500
    
     
    
    FINAL COST: $500 [non-taxable]

    Thank you

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author wpcentrics

    (@wpcentrics)

    Hi, @lukiano880.

    You need to put in every rule, in first place, the shipping class exclusion, then the weight condintion, in this way:

    #1 WHERE “NOT IN Shipping class” (Myclass) AND Weight MIN >=0, <= 1 Price 100$

    #2 WHERE “NOT IN Shipping class” (Myclass) AND Weight MIN >1, <= 2 Price 200$

    etc.

    About 10 kg limit: carts that doesn’t fulfill any rule will not be offered, you don’t need to do anything about

    And must set the group-by option as “all grouped as one”

    Please, confirm this works as you expect

    Kind regards,
    Carles Martin
    wp-centrics support team

    Thread Starter lukiano880

    (@lukiano880)

    Thanks.
    Thats works.

    Plugin Author wpcentrics

    (@wpcentrics)

    Glad to help! 🙂

    Regards,
    Carles Martin

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Exclude some products from the total weight.’ is closed to new replies.