Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Created August 25, 2015 12:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mikejolley/3539aae177438a0097d4 to your computer and use it in GitHub Desktop.
Save mikejolley/3539aae177438a0097d4 to your computer and use it in GitHub Desktop.
woocommerce_flat_rate_shipping_add_rate example for theme functions.php
<?php
add_action( 'woocommerce_flat_rate_shipping_add_rate', 'add_another_custom_flat_rate', 10, 2 );
function add_another_custom_flat_rate( $method, $rate ) {
$new_rate = $rate;
$new_rate['id'] .= ':' . 'next_day'; // Append a custom ID
$new_rate['label'] = 'Next Day'; // Rename to 'Rushed Shipping'
$new_rate['cost'] += 2; // Add $2 to the cost
// Add it to WC
$method->add_rate( $new_rate );
}
@karneaud
Copy link

karneaud commented Oct 1, 2020

Do you need to write separate functions for every custom flat rate?

ever got it figured out?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment