Hi roser001,
To hide slider on all the pages except homepage, edit front_end_functions.php file in front_end folder in the theme.
Find the line
if($hide_slider=="" && $image_link!=''){
and replace it with
if(($hide_slider=="" || is_home()) && $image_link!=''){
Best regards,
Web-Dorado themedev team.
p.s. We gonna add this option to the future versions of the theme. Users will be able to show slider on every page, show only on homepage or hide it everywhere.
@progmastery
Hi … i doesnt work on static front page.
Hi @roser001,
Try this
if(($hide_slider=="" || is_home() || is_front_page()) && $image_link!=''){
Hi!
The right one is:
if(($hide_slider==”” || is_front_page()) && $image_link!=”){
Why is this not working in child theme? Only in original theme?
But stil there is one deisgn problem. Slider is not under transaprent nav bar (like in default), it is under nav bar fully and nav bar isnt transparent – got grey color.