Does anyone have experience with the Owebia Shipping method for Magento?
We've been trying to set it up for about 3 weeks now, and arent able to get help from the developers as they don't offer support.
1) I can't get Owebia to work with magento's shopping cart price rules for shipping. I have a shopping cart price rule setup for FREE SHIPPING on specific attribute items, however, Owebia ignores this. The cart rule displays free shipping properly with other shipping methods, but it doesn't seem to work with Owebia. Owebia still shows the full shipping price based on its weight and ignores the rule.
2) I can't get Owebia's built in product.attribute.sku methods to work. Basically, I have specific attribute products that are free shipping and can be bought along side regular products based on weight vs destination. So I have no idea how to code that together with Owebia. The method they provide in the Owebia documentation is absolutely useless as it gives no real examples of use.
Heres my current code (without any product.attribute rules):
{
"USAALLSMALLPACKET": {
"label": "Small Packet Air (6-10 Business Days)",
"shipto": "US",
"fees": "{table {cart.weight} in 0.249:6.50, 0.499:8.75, 0.999:11.50}",
"customer_groups": "NOT LOGGED IN,General"
},
"USAALLEXPEDITED": {
"label": "Expedited (4-5 Business Days)",
"shipto": "US",
"fees": "{table {cart.weight} in 0:0, 0.499:14.30, 0.999:15.30, 1.499:16.30, 1.999:17.30, 2.499:18.30, 2.999:19.30, 3.499:20.30, 3.999:21.30, 4.499:22.30, 4.999:23.30, 6.499:27.30, 8.999:32.30, 10.499:37.30, 12.999:43.30, 14.499:48.30, *:87.00}",
"customer_groups": "NOT LOGGED IN,General"
},
"CANADAAALLEXPEDITED": {
"label": "Canada Expedited (2-7 Business Days)",
"shipto": "CA",
"fees": "{table {cart.weight} in 0.499:10.15, 0.999:11.15, 2.999:12.75, *:87.00}",
"customer_groups": "NOT LOGGED IN,General"
}
}
What id like to do is be able to have it that if a product with attribute_set is "Apple" is added to the cart that it wont charge for shipping for this product only, and only for certain countries. In the above code; I have USA and Canada, I want it to be free shipping for USA only, for that specific product (not the whole cart).
product.attribute_set: name of the attribute set
product.attribute_set.id
product.attribute_set.*:
I dont know how to use the above 3 methods in any way.
Any help in regarde to this matter would be greatly appeciated