I want to show if free shipping is activated on my WooCommerce cart, to tell people "Hey, you've got free shipping!". Free shipping can be activated by either order amount or a coupon.
I have tried this code, but it returns an empty array.
global $woocommerce;
$woocommerce->shipping->get_shipping_methods();
Otherwise I could have checked if free_shipping was set.
Hope you all have some great ideas how to get this working :)