Created
August 7, 2015 06:45
-
-
Save jukra/65373cde1d54770670e8 to your computer and use it in GitHub Desktop.
WooCommerce remaining cost for free shipping notification
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function cart_notice() { | |
$free_shipping_settings = get_option( 'woocommerce_free_shipping_settings' ); | |
$maximum = $free_shipping_settings['min_amount']; | |
$current = WC()->cart->subtotal; | |
if ( $current < $maximum ) { | |
echo '<div class="woocommerce-message">Get free shipping if you order $ ' . ($maximum - $current) . ' more!</div>'; | |
} | |
} | |
add_action( 'woocommerce_before_cart', 'cart_notice' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment