Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save xlplugins/5e255daa65771bb0ee3739f69059f6a2 to your computer and use it in GitHub Desktop.

Select an option

Save xlplugins/5e255daa65771bb0ee3739f69059f6a2 to your computer and use it in GitHub Desktop.
Add shipping in upsell with filter in batching scenrios
// To enable override (charge full shipping):
add_filter( 'wfocu_dynamic_shipping_override', '__return_true' );
// To add shipping to subscriptions:
add_filter( 'wfocu_subscription_args', function( $args, $get_product, $product, $subscription_order ) {
$args['add_shipping'] = true;
return $args;
}, 10, 4 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment