Skip to content

Instantly share code, notes, and snippets.

@finalwebsites
Created March 26, 2024 18:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save finalwebsites/10f35ed05b42b341589ae895d72d436b to your computer and use it in GitHub Desktop.
Save finalwebsites/10f35ed05b42b341589ae895d72d436b to your computer and use it in GitHub Desktop.
WooCommerce: Overige verzendmethoden verbergen indien gratis verzending van toepassing is
<?php
function fws_hide_shipping_when_free_is_available( $rates ) {
$free = array();
foreach ( $rates as $rate_id => $rate ) {
if ( 'free_shipping' === $rate->method_id ) {
$free[ $rate_id ] = $rate;
break;
}
}
return ! empty( $free ) ? $free : $rates;
}
add_filter( 'woocommerce_package_rates', 'fws_hide_shipping_when_free_is_available', 100 );
@finalwebsites
Copy link
Author

Plaats deze code in het functions.php bestand van je WordPress child theme.

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