I’m trying to understand why the free shipping cartrule I just created doesn’t work on all the available shipping methods.
I have one shipping method that becomes free, and the other (socolissimoflexibilite) doesn’t change.
Could someone give me a hint, explanation, or some config/data/code to check on socolissimoflexibilite shipping method?
My first investigations lead me to the sales/quote_address_rate collection: one rate is well changed to 0.00€, but not the other.
I also checked the quote shipping address: its free_shipping field is set to 1.
Ok I found the answer :
We had a module (
socolissimoflexibilite) extending the modulesocolissimosimplicite.socolissimoflexibiliterewrites thecollectRates()function, andfreeShippingisn’t supported anymore. I had to rewrite this part by myself.For people getting the same issues with this module, here is the trick :
In
Addonline_SoColissimoFlexibilite_Model_Carrier_ShippingMethodclass, thecollectRates()function must be replaced with this code :And now, freeShipping rules will be supported by
socolissimoflexibilite!