How to display a clickable picture instead of home page ? - Joomla! Forum - community, help and support
dears,
when people arrive on site i'd display clickable picture , if click on picture site appear ..
can tell me how ?
thanks
when people arrive on site i'd display clickable picture , if click on picture site appear ..
can tell me how ?
thanks
why not edit template index.php , add popup of image, using colorbox, or shadowbox, etc. search "open popup on page load"
you can check if it's home page using php , j! methods.
<?php
$menu = & jsite::getmenu(); // maybe template has line.
$home = ($menu->getactive() === $menu->getdefault());
if ($home) { ?><script>popup code here.</script><?php }
you can check if it's home page using php , j! methods.
<?php
$menu = & jsite::getmenu(); // maybe template has line.
$home = ($menu->getactive() === $menu->getdefault());
if ($home) { ?><script>popup code here.</script><?php }
Comments
Post a Comment