I found a solution. I don’t know if it’s right. But it works.
function wp_all_export_convert_stock($stock) {
$stock = str_replace(".000", " ", $stock);
$stock = str_replace("000", "", $stock);
return $stock;
}
-
This reply was modified 2 years, 12 months ago by seo4444.