Display decimal quantity in cart
-
I tried this solution:
add_filter( ‘woocommerce_quantity_input_args’, ‘wdm_change_step’, 10, 2 );
function wdm_change_step( $args, $product )
{
$args[‘step’] = 0.25; // Quantity steps
return $args;
}and commented out
add_filter( ‘woocommerce_stock_amount’, ‘intval’ );
all from wc-core-functions.php
but I when I enter 0.25, it automatically converts to 1. How do I make the minimum quantity into 0.25? and is it possible to implement this on certain/chosen products only?
I am aware that there is a paid plugin for this, but we’re only doing this for trial purposes. We already bought a theme and the product bundle plugin, so we’re trying to cut cost for the meantime. Any help would be much appreciated.
- The topic ‘Display decimal quantity in cart’ is closed to new replies.