Hi, I'm having problem to install Smooth Slider beacuse you said i should install the code on index.php of my theme but the code in my WP theme is different. You said i should insert the code like this:
<?php if ( function_exists( 'get_smooth_slider' ) ) {<br /> get_smooth_slider(); } if(have_posts()) : while(have_posts()) : the_post(); ....(rest of the loop code) ?>
But on the index.php of my theme (Fresh news) the code is like that:
<?php if (function_exists('fpg_show')) { echo fpg_show(NULL); } ?> <?php if (have_posts()) : $count = 0; ?> <?php while (have_posts()) : the_post(); $postcount++;?>
When i try to insert the Smooth Slider code my site stops working and displays a notice, something about syntax error. How can i insert Smooth Slider code in this code?