Hi,
The google product plugin display the value which is stored in the database.
$xml .= "\t".'<g:shipping_weight>'.$product->product_weight.' '.$product->product_weight_unit.'</g:shipping_weight>'."\n";
Google should understand that the point is the decimal separator, like it does for the prices.
Otherwise, you can force the conversion of the weight into a float number
$xml .= "\t".'<g:shipping_weight>'.(float)hikashop_toFloat($product->product_weight).' '.$product->product_weight_unit.'</g:shipping_weight>'."\n";
About your cron issue ; I'm sorry but the HikaShop license is providing support/updates/cron for one single website.
If you want to have cron on other website with having a license, you will have to configure the CRON youself in your server.
www.hikashop.com/support/documentation/i...ashop-cron-task.html
Regards,