Untitled

mail@pastecode.io avatar
unknown
plain_text
2 years ago
252 B
2
Indexable
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;
}