• Hi everybody,

    Im trying to use the slideck 2 (https://wordpress.org/plugins/slidedeck2) plugin on my index.php but I’m having several problems with it.

    It should work just with this code

    <?php echo do_shortcode( “[SlideDeck2 id=5913]” ); ?>

    but all the menu buttons disappear in my webpage if i introduce in index.php (www.gamelegant.com)

    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 ‘Trying to install a new plugin in my index.php Please help :)’ is closed to new replies.