Hey there!
Because i use multiple menues (one for each language on my site) instead of the 'main menu', the slide effect didn't work anymore.
I followed
this advice, but, of course, now the slider is visible on EVERY menue item click.
Is there any way to rewrite this 'if' statement so, that the slider works ONLY on the 'Home' button in EACH menue?
<?php
if ($menu->getActive() == $menu->getDefault()) : ?>
<div id="jf-slideshow">
<div class="main clearfix">
</div>
</div>
<?php endif; ?>
To something like that?
if ($menu->getActive() == $menu->getDefault(en) or $menu->getDefault(de) or $menu->getDefault(fr)) : ?>
Sorry, i suck at PHP
Thanks in advance!!!