Add cart and checkout notices if the total is less than $25 in WooCommerce

Add cart and checkout notices if the total is less than $25 in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_action( 'woocommerce_before_cart_table', 'free_shipping_notice' ); 
add_action( 'woocommerce_checkout_before_customer_details', 'free_shipping_notice' ); 
function free_shipping_notice() {
  if ( 25 > WC()->cart->get_total() ) {
    echo '<div style="color: #e08e79;">All orders over $25 ship free</div>';
  }
}
1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.