$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’;
}
Month: July 2018
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’ );
Sort Reviews by date on Woocommerce
add_filter( ‘woocommerce_product_review_list_args’, ‘aviweb_reviews_first’ );
function aviweb_reviews_first($args) {
$args[‘reverse_top_level’] = true;
return $args;
}