Negative Number in Extras

So I’m looking to remove the "this number needs to be above 0 " when adding a cost for an extra item.

I would like to be able to add minus figures to apply a discount off the price.

So say the item is for sale and in a protective case at £1 the customer could select to remove the case saving them say 50p making the item total 50p but pushing the £1 sale?

Please try this PHP snippet

add_filter(
	'hivepress/v1/models/listing/attributes',
	function($attributes){
		unset($attributes['price_extras']['edit_field']['fields']['price']['min_value']);
		
		return $attributes;
	},
	1000
);

Thanks your a star what about editing the step up as the number inclines in 0.01 I would like it to go up in 0.1

Please try this PHP snippet

add_filter(
	'hivepress/v1/fields/currency',
	function($args, $field){
		$args['decimals'] = 1;
		return $args;
	},
	1000,
	2
);

you never fail to put a smile on my face I spent 4 hrs trying to write that and I didn’t even com close.

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.