hi all.

my wholesale store is set to require customer authorization to browse, i also require a different homepage for visitors.

so my questions are, HOW do i -

1. direct visitors to default homepage (instead of login)?
2. allow certain pages to be visible to anyone?

PS i have already added this above the main page content to display a custom homepage (until logged in):

Code:
<?php

if ($_SESSION['customer_id'] == 0) {

  // display homepage image
  echo '<td><div class="homeimg"';
  if (!$this_is_home_page) { echo 'style="display:none;"'; }
  echo '></div>';

} else {

?>