WooCommerce Product Addons by Najeeb Ahmad
add_filter('ppom_option_price', function ($price) {
if (class_exists('WOOCS') && !empty($price)) {
global $WOOCS;
if ($WOOCS->is_multiple_allowed) {
$price = $WOOCS->woocs_exchange_value($price);
}
}
return $price;
});