Advertisement
wclovers

Untitled

Mar 20th, 2023
716
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. add_filter('wcfmmp_shipping_weight_calculate_amount', function( $amount, $price, $products, $destination_country, $destination_state, $weight_array_for_country, $default_cost_for_country, $total_weight, $weight_mode_for_country, $unit_cost_for_country ) {
  2.     if( 'FR' == $destination_country && 'FR-2A' == $destination_state ) {
  3.         $amount += 25;
  4.     }
  5.     return $amount;
  6. }, 10, 10 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement