Untitled

 avatar
unknown
plain_text
2 years ago
306 B
4
Indexable
add_filter( 'nrr_get_review_items', function ( array $items, NRR_Order $order ) {

    $products = [ 1, 2, 3 ];

    foreach ( $items as $key => $item ) {

        if ( in_array( $item['id'], $products ) ) {
            unset( $items[ $key ] );
        }

    }

    return $items;
}, 10, 2 );
Editor is loading...