kodie
1/6/2016 - 5:41 PM

Remove extra shipping charges from free shipping option in Shopp. (Add to theme's functions.php file)

Remove extra shipping charges from free shipping option in Shopp. (Add to theme's functions.php file)

add_filter('shopp_shipping_fees', 'shopp_make_free_option_free', 10, 2);
function shopp_make_free_option_free($fee, ShoppShiprateService $Service, array $itemfees) {
	if ('FreeOption-0' == $Service->slug) {
		$fee = 0.00;
	}
	return $fee;
}