I looked at the code and for some reason the IF does want a 'false' setting ...
However, when I do that, then I don't have the flexibility of having the Free Shipping as the ONLY shipping method ...
If you want ONLY Free Shipping use 'true' ...
$free_ship_on = MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING;
if ($free_ship_on == 'true') {
If you want Free Shipping and Other Shipping methods at the same time when the shipping hits the level for the >= XX.XX then use 'false' ... and be sure that Free Shipping Options freeoptions is installed with the same settings ...
$free_ship_on = MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING;
if ($free_ship_on == 'false') {
in the tpl_shopping_cart_default.php file ...
NOTE: Free Shipping Options freeoptions already works in this manner, the difference is the shopping cart sidebox has the how many $$$ to go before Free Shipping message included ...