Untitled
add_filter( 'nrr_template_path', 'nrr_template_path', 10, 3 ); function nrr_template_path( $path, $order, $wp_query ): string { if ( ! $order->is_review_submitted() ) { return __DIR__ . '/template.php'; } return $path; }
add_filter( 'nrr_template_path', 'nrr_template_path', 10, 3 ); function nrr_template_path( $path, $order, $wp_query ): string { if ( ! $order->is_review_submitted() ) { return __DIR__ . '/template.php'; } return $path; }