Доработка синхронизации сайта на wordpress c базой 1C.
Установлен плагин 1C:Enterprise/1С:Предприятие Data Exchange (https://wordpress.org/plugins/woocommerce-and-1centerprise-data-exchange/), выгрузка работает, но не синхронизируется английская версия сайта (WPML).
Есть ответ от поддержки WPML:
1. The proper function for updating the stock in WooCommerce 3.x seems to be this one:
https://docs.woocommerce.com/wc-apidocs/function-wc_update_product_stock.html
So if the woocommerce-and-1centerprise-data-exchange plugin will use this function, the stock will be updated for all the languages.
2. Another way of doing it is:$product = wc_get_product( $product_id );
$product->set_stock( $qty );
3. Also, updating the product using wp_update_post() after changing stock can also sync the stock!
Нужно настроить синхронизацию остатков товара на английской версии плагина.
Есть еще задачи по сайту, готовы обсудить.