- Ce sujet contient 2 réponses, 3 participants et a été mis à jour pour la dernière fois par , le il y a 1 mois.
3 sujets de 1 à 3 (sur un total de 3)
3 sujets de 1 à 3 (sur un total de 3)
- Vous devez être connecté pour répondre à ce sujet.
WooFrance Dépannage et support WordPress WooCommerce › Forums › Forum de Support WooCommerce › WooCommerce – round sale price add to cart
Le code suivant fonctionne
Et le prix devient rand
Le problème est que:
La colonne du prix total ne fonctionne pas dans le panier Aidez-moi
……………………………………………
The following code works
And the price becomes rand
The problem is that:
Total price column does not work in cart Please help
add_filter( ‘woocommerce_get_price_excluding_tax’, ’round_price_product’, 10, 1 );
add_filter( ‘woocommerce_get_price_including_tax’, ’round_price_product’, 10, 1 );
add_filter( ‘woocommerce_tax_round’, ’round_price_product’, 10, 1);
add_filter( ‘woocommerce_get_price’, ’round_price_product’, 10, 1);
add_filter( ‘woocommerce_calculated_total’, ’round_price_product’, 10, 1);
add_filter( ‘woocommerce_cart_calculate_fees’, ’round_price_product’, 10, 1);
add_filter( ‘woocommerce_cart_total’, ’round_price_product’, 10, 1);
function round_price_product( $price ){
// round up
$rounded = ceil( $price / 1000 ) * 1000;
return $rounded;
}
====================
This page not only adds a click and a loading to the payment process, but it also offers the option to pay or cancel the order, with the cancellation button being driving directions more visible than the other! That isn’t exactly the issue, but well… I’d rather not have to ask my consumers to cancel their orders!
====================