Hello,
Thanks again for your work.
I need one more tweek please if possible:
I 'm using your method and the following code to achieve free shipping for over 80Euros orders.
if ($total > 80.00)
{ $total_shipping_handling = 0 ; }
else
{ $total_shipping_handling = $d["zone_qty"] * $dbr->f( "shipping_rate_value" ) + $dbr->f( "shipping_rate_package_fee" ) ; }
$show_shipping_handling = $CURRENCY_DISPLAY->getFullValue( $total_shipping_handling ) ;
I want now to use free shipping only to orders within Europe.
I 'm using standard shipping and i have 3 rates, one for the UK, one for European Union and one for the rest of the world.
I want to exclude free shipping in the "rest of the world" option and maybe use a flat rate. Something like
if ($total > 80.00) AND shipping rate IS NOT "rest of the world"
{ $total_shipping_handling = 0 ; }
Can someone please translate the above expresion into code?

Thanks a lot!