Narrated: The Jade’s Life Skills series – Believing in Oneself
[insert_php]
global $wpdb;
$current_user = wp_get_current_user();
$user_id=$current_user->ID;
$result = $wpdb->get_results( “SELECT * FROM wp_woocommerce_downloadable_product_permissions where user_id=”.$user_id);
/* If you require you may print and view the contents of $result object */
$product_id_array=array();
if(count($result)>0){
foreach($result as $row)
{
//echo $row->user_id.” “.$row->product_id.”;
$product_id_array[]=$row->product_id;
}
}
//Num 4
if (in_array(“1330”, $product_id_array))
{
echo ‘
}
else {
echo ‘
Not purchased! Click on the image below to purchase your own copy!
}
[/insert_php]