Skip to content

Instantly share code, notes, and snippets.

View raajtram's full-sized avatar
✈️
On the go, always.

Raaj Trambadia raajtram

✈️
On the go, always.
View GitHub Profile
@raajtram
raajtram / free-item-shipping.php
Created April 13, 2017 14:59 — forked from helgatheviking/free-item-shipping.php
Remove certain items from shipping calculations
function remove_free_shipping_items( $packages ) {
foreach( $packages as $i => $package ){
foreach ( $package['contents'] as $key => $item ) {
if ( $item['data']->get_shipping_class() == 'free' ) {
unset( $packages[$i]['contents'][$key] );
add_filter( 'woocommerce_cart_needs_shipping', '__return_true' );