K
K
k-22017-09-07 17:44:07
WordPress
k-2, 2017-09-07 17:44:07

How to sell a fractional quantity of a product on WooCommerce?

How to implement the sale of goods in fractional sq m, if the price of the order is for 1 sq m
.
Or maybe there are other ways to change the price before putting it in the cart. but without changing it for 1 square in the admin panel.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
I
Ivan K, 2019-08-13
@ikonkov

in functions.php

function min_decimal($val) {
    return 0.01; // Минимальное значение
}

add_filter("woocommerce_quantity_input_min", "min_decimal");

function step_decimal($val) {
    return 0.01; // Шаг    
}

add_filter("woocommerce_quantity_input_step", "step_decimal");

// Удаление и добавление своего фильтра проверки количества

remove_filter("woocommerce_stock_amount", "intval");
add_filter("woocommerce_stock_amount", "floatval");

M
Mikhail Lisetsky, 2017-09-08
@MacKor

Maybe this plugin will work:
https://woocommerce.com/products/measurement-price...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question