The navigation arrows are not clickable
-
I am using the PHP shortcode in header.php to display my slider on home page only, but the navigation arrows are not clickable on my website. I don’t think my multilingual has anything to do with it since it is a separate PHP code.
https://www.centralcrowdfund.com
<?php
if(WPGlobus::Config()->language == ‘en’ && is_front_page()) {
echo do_shortcode(‘[smartslider3 slider=4]’);
echo do_shortcode(‘[logoshowcase cat_id=”29″ show_title=”true” slides_column=”4″]’);
echo do_shortcode(‘[project_grid columns=”3″ short_desc=”1″]’);
}
else if(WPGlobus::Config()->language == ‘zh’ && is_front_page()) {
echo do_shortcode(‘[smartslider3 slider=5]’);
echo do_shortcode(‘[logoshowcase cat_id=”29″ show_title=”true”]’);
}
else if(WPGlobus::Config()->language == ‘tw’ && is_front_page()) {
echo do_shortcode(‘[smartslider3 slider=7]’);
echo do_shortcode(‘[logoshowcase cat_id=”29″ show_title=”true”]’);
}
?>
- The topic ‘The navigation arrows are not clickable’ is closed to new replies.