Force enable reviews on all products in WooCommerce

Force enable reviews on all products in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'comments_open', 'wc_force_enable_reviews', 9999, 2 );
 
function wc_force_enable_reviews( $enable, $post_id ) {
   if ( 'product' === get_post_type( $post_id ) ) {
      $enable = true;
   }
   return $enable;
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.