Some problems trying to introduce the plugin on index.php
-
Im trying to use the slideck 2 on my index.php but I’m having several problems with it. I tried with this code:
<?php echo do_shortcode( “[SlideDeck2 id=5913]” ); ?>
but all the menu buttons disappear in my webpage (www.gamelegant.com)
In which part of my index.php I have to place the code?
THIS IS MY ORIGINAL INDEX.PHP
<?php get_header(); // show header
?>
<?php
#loop through content panels
$builder = it_get_setting(‘builder’);
if(!empty($builder)) {
foreach($builder as $component) {
it_get_template_part($component);
}
} else {
it_get_template_part(‘list-paged’);
}
?>
<?php get_footer(); // show footer ?>Thank you so much!
- The topic ‘Some problems trying to introduce the plugin on index.php’ is closed to new replies.