Untitled

Anonymous
plain_text
06/21/2023 8:06 AM
336 B
18
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;
}
Editor is loading...