Skip to content

Instantly share code, notes, and snippets.

@stompweb
Created March 7, 2015 15:35
Show Gist options
  • Save stompweb/274c5171f5d5bdf9260d to your computer and use it in GitHub Desktop.
Save stompweb/274c5171f5d5bdf9260d to your computer and use it in GitHub Desktop.
<?php
function woocommerce_free_delivery_fragment( $fragments ) {
global $woocommerce;
ob_start(); ?>
<div class="promo">Show Promo Area</div>
<?php
$fragments['div.promo'] = ob_get_clean();
return $fragments;
}
add_filter('add_to_cart_fragments', 'woocommerce_free_delivery_fragment');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment