Skip to content

Instantly share code, notes, and snippets.

@rajeshsingh520
Created December 29, 2024 08:30
Show Gist options
  • Save rajeshsingh520/57750166f26c0748d858d3e5d1935029 to your computer and use it in GitHub Desktop.
Save rajeshsingh520/57750166f26c0748d858d3e5d1935029 to your computer and use it in GitHub Desktop.
add_filter('pisol_cefw_fees_filter', function($fees){
foreach($fees as $key => $fee){
$original_amount = $fee['amount'];
$roundedNumber = floor($original_amount * 100) / 100;
$fees[$key]['amount'] = $roundedNumber;
}
return $fees;
},10,1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment