Untitled
unknown
plain_text
3 years ago
306 B
7
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...