// pass login status to frontend add_action('wp_head', function() { if(is_user_logged_in()){ echo ""; } else { echo ""; } }); // pass login status to frontend add_action('wp_head', function() { if(is_user_logged_in()){ echo ""; } else { echo ""; } }); // check if logged user purchased course add_action('wp_head', function(){ if(!is_user_logged_in()) return; $user_id = get_current_user_id(); $product_id = 1234; // change this to your product ID if(function_exists('wc_customer_bought_product')){ $bought = wc_customer_bought_product('', $user_id, $product_id); if($bought){ echo ""; } else { echo ""; } } }); LOGO – RCC