nord vpnnord vpn
Ad

Untitled

mail@pastecode.io avatar
unknown
plain_text
5 months ago
252 B
1
Indexable
Never
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;
}

nord vpnnord vpn
Ad