WooFrance Dépannage et support WordPress WooCommerce Forums Forum de Support WooCommerce WooCommerce – round sale price add to cart

3 sujets de 1 à 3 (sur un total de 3)
  • Auteur
    Messages
  • #396795
    poostkala
    Participant
    Points: 12 pts

     

    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;

    }

     

    ====================
    depanagewp
    vpsa2
    #400892
    fizzparentlanguid
    Participant
    Points: 14 pts

    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!

    ====================
    depanagewp
    vpsa2
    #527803
    El Condorito
    Participant
    Points: 74 pts
    Membre 2 étoiles

    Bonjour,

    Le site en question est-il visible ?

    ====================
    depanagewp
    vpsa2
3 sujets de 1 à 3 (sur un total de 3)
  • Vous devez être connecté pour répondre à ce sujet.