<?php if ( is_user_logged_in() ) { //Whatever you're trying to only show to logged in users like the product description } else { //Whatever you're trying to tell non-logged in users like the you are not logged in message ?> Please login to view product details <a href="/my-account/">Login Now</a> <?php } ?>