• На сайте woocommerce округляет цену до 2,967. В выгрузке цена 2966.5 как округлить в выгрузке?

Viewing 1 replies (of 1 total)
  • Plugin Author Anton Vanyukov

    (@vanyukov)

    @bylextmb,

    Попробуйте добавить в файл functions.php вашей темы добавить:

    add_filter( 'me_product_price', function( $price, $id ) {
    	return round( $price );
    }, 10, 2 );

    С уважением,
    Антон

Viewing 1 replies (of 1 total)
  • The topic ‘Округление цен’ is closed to new replies.