Hello there,
I love this theme. I was thinking of doing this. I only want the slide show image to show up only when a user is logged out. But after a user is logged in, I want the slideshow image to disappear. How can I do this?

Thanks in advance.

Comments

Deepika.chavan’s picture

Hi,
Add following code in page-front.tpl.php before line <div id="slideshow-wrapper">

Code to be added is :

<?php global $user; ?>
<?php if ($user->uid <= 0): ?>

End the if condition by adding this line <?php endif; ?> after following code:

<img src="<?php print $base_path . $directory; ?>/images/slideshows/snow.jpg" width="950" height="355" alt="slideshow 3"/>
</div>
</div>
</div>

Note: Please clear cached data.
Hope that helps!!

Rgrds,
Deepika Chavan.