How can I conditionally show different home page templates based on whether or not the user is logged in?
First check that there isn’t a page set as a front page in “Reading Setting”. If that is set, index.php is not used as the home page, but the template of the page you set as front page. In that case, you need to find that template and add you conditional is there. <?php if(is_user_logged_in()) … Read more