thanks for the quick response,
i have try using the php code above is not working` this is what i did
NOTE: my aim is to show the master sliders to only logout users or guests but hide when i user login.
<?php echo do_shortcode(‘[eyesonly hide=”yes” logged=”in”]
<?php masterslider ( 2 ); ?>
[/eyesonly]’) ; ?>
<!— master slider function starts here —->
<?php if( function_exists( ‘masterslider’ )): ?>
<?php masterslider ( 2 ); ?>
<?php else: ?>
<div class=”main_graphic”>
<div class=”main_graphic_inner”> …
then i try this, it hide the master sliders to both logged and logout users
<?php if( function_exists( ‘do_shortcode’ )): ?>
<?php echo do_shortcode(‘[eyesonly hide=”yes” logged=”out”]
<?php masterslider ( 2 ); ?>
[/eyesonly]’) ; ?>
<?php else: ?>
<!— master slider function starts here —->
<?php if( function_exists( ‘masterslider’ )): ?>
<?php masterslider ( 2 ); ?>
<?php else: ?>
<div class=”main_graphic”>
<div class=”main_graphic_inner”>
please help me out