I'm trying to add google merchant center reviews to my woocommerce thank you' page. I found this code online but it's not working. Can anyone help?
add_action( 'woocommerce_thankyou', 'my_custom_checkout_field_update_order_meta' );
function my_custom_checkout_field_update_order_meta( $order_id ) {
if ( ! empty( $_POST['google_merchant_center_reviews'] ) ) {
update_post_meta( $order_id, 'google_merchant_center_reviews', sanitize_text_field( $_POST['google_merchant_center_reviews'] ) );
}
}