WebHooks doesn't work
-
Hey guys,
I’m trying use action hooks to get content of a product when create and update it. I create this code to test, but doesn’t works. I don’t know, but may be I’m using wrong hooks. This is the code to test it:
add_action('woocommerce_cli_create_product', 'save_new_product'); function save_new_product($product_data, $product) { header('Location: https://google.com.br'); } add_action('woocommerce_api_create_product', 'save_new_product_2'); function save_new_product_2($product_data, $product) { header('Location: https://google.com.br'); } add_action('woocommerce_product_bulk_edit_save', 'when_edit'); function when_edit($product_data, $product) { header('Location: https://google.com.br'); } add_action('woocommerce_cli_update_product', 'teste'); function teste($product_data, $product) { header('Location: https://google.com.br'); } add_action('woocommerce_api_edit_product', 'teste2'); function teste2($product_data, $product) { header('Location: https://google.com.br'); }
PS: the header it’s only for test the event capture.
- The topic ‘WebHooks doesn't work’ is closed to new replies.