• gabrielprea

    (@gabrielprea)


    Hello! This plugin really works very well with my aplication. I d like to know if there is any way to round the numbers to make the delivery fee an integer number.
    best regards

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Gaylord Focker

    (@webdata)

    Hi,

    Try to add this to your theme’s functions.php file:

    function my_dbf_calculated_fee_callback( $calculatedFee, $kiloMeters, $divider, $price ) {
       return round($calculatedFee);
    }
    add_filter( ‘dbf_calculated_fee’, ‘my_dbf_calculated_fee_callback’, 10, 4 );

    Kim

Viewing 1 replies (of 1 total)
  • The topic ‘Round a Fee’ is closed to new replies.