How to check selected product in previous customer orders or not

$seletedProduct = 25;
$exist = ‘no’;
if(is_user_logged_in()){      // Check for customer login
$orders = get_posts( array(
‘numberposts’ => -1,
‘meta_key’ => ‘_customer_user’,
‘meta_value’ => get_current_user_id(),
‘post_type’ => ‘shop_order’,
‘post_status’ => array(‘wc-completed’, ‘wc-processing’)
) );
foreach ($orders as $order) {
$WC_Order = new WC_Order($order->ID);
$items = $WC_Order->get_items();
foreach ( $items as $item ) {
if($item[‘product_id’] == $seletedProduct){
$exist = ‘yes’;
}
}
}
}
if($exist == ‘no’){
echo ‘Product not ordered’;
}else{
echo ‘Product already ordered’;
}

Advertisement

Disable plugin updates in WordPress

Disable all plugin updates:-
function aviweb_disable_plugin_updates( $values ) {

foreach($values as $value) {
unset( $value->response[‘plugin/plugin.php’] );
}
return;
}
add_filter( ‘site_transient_update_plugins’, ‘aviweb_disable_plugin_updates’ );

Disable single plugin update:-
function aviweb_disable_plugin_updates( $value ) {
unset( $value->response[‘plugin_name/plugin_file.php’] );
return $value;
}
add_filter( ‘site_transient_update_plugins’, ‘aviweb_disable_plugin_updates’ );