woocommerce / woocommerce-rest-api

This is the WooCommerce core REST API Package. It runs standalone as a feature plugin too.
70 stars 46 forks source link

Modify WC_REST_Products_V2_Controller->prepare_object_for_database() #222

Closed pixelschupser closed 4 years ago

pixelschupser commented 4 years ago

Heyo,

is there a way to modify "WC_REST_Products_V2_Controller->prepare_object_for_database()" because i have to change the way it identifies the "Product categories".

vedanshujain commented 4 years ago

You can use the filter woocommerce_rest_pre_insert_product_object, which will be called at the end of this method (so basically before product is saved to DB) and you can use it to do any modifications.

I am closing the issue as part of repo maintainence, but feel free to comment back if you have more questions.