Edit comment_post_ID on Review
-
Hi guys. I have some products that are just bundles of a product with different variations, so I want to unite all reviews from these bundles into the main product. This in Woocommerce, I now that inside Cusrev.com I won’t be able to do that.
So far I’ve tried:add_action('wp_insert_comment','update_post_id_if_review',99,2); function update_post_id_if_review($comment_id, $comment_object) { // Get the post's ID $post_id = $comment_object->comment_post_ID; if ($post_id === BUNDLE_ID) { // Form an array of data to be updated $commentarr = array(); $commentarr['comment_ID'] = $comment_id; $commentarr['comment_post_ID'] = MAIN_PRODUCT_ID; wp_update_comment( $commentarr ); } }
But it’s not working.
Any ideas?
Thanks!!
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Edit comment_post_ID on Review’ is closed to new replies.