Get tax row amounts with or without compound taxes includes.
$total, $compound, $display, $this
Sortie :
@param bool $compound True if getting compound taxes. @param bool $display True if getting total to display. @return float price
// Modifier la valeur avec le filtre 'woocommerce_cart_taxes_total'
add_filter('woocommerce_cart_taxes_total', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre($total) {
// Modifier la valeur
return $total;
}
Chargement des actualités...