• I have been checking the forums and been googling this problem however nothing seems to help me really – if anyone knows a thread with a solution to this just re-direct me there 🙂

    Trying to install the Meta Slider plugin into the Zerif Lite theme. I read in an earlier thread (that person was using another theme though) to paste the code below into the header.php – (so I’m guessing the header.php in Zerif Lite is the right location for this code) code below:

    <?php
    echo do_shortcode(“[metaslider id=216]”);
    ?>

    However I don’t know where in the header.php I should paste the code (I’m new to this). If anyone could help it would be very appreciated!

    This is the header.php:

    <?php
    /**
    * The Header for our theme.
    * Displays all of the <head> section and everything up till <div id=”content”>
    */
    ?><!DOCTYPE html>

    <html <?php language_attributes(); ?>>

    <head>
    <meta charset=”<?php bloginfo( ‘charset’ ); ?>”>
    <meta name=”viewport” content=”width=device-width, initial-scale=1″>
    <title><?php wp_title( ‘|’, true, ‘right’ ); ?></title>
    <link rel=”profile” href=”http://gmpg.org/xfn/11″&gt;
    <link rel=”pingback” href=”<?php bloginfo( ‘pingback_url’ ); ?>
    <!–[if lt IE 9]>
    <script src=”<?php echo esc_url( get_template_directory_uri() ); ?>/js/html5.js”></script>
    <link rel=”stylesheet” href=”<?php echo esc_url( get_template_directory_uri() ); ?>/css/ie.css” type=”text/css”>
    <![endif]–>

    <?php wp_head(); ?>

    </head>

    <?php if(isset($_POST[‘scrollPosition’])): ?>

    <body <?php body_class(); ?> onLoad=”window.scrollTo(0,<?php echo intval($_POST[‘scrollPosition’]); ?>)”>

    <?php else: ?>

    <body <?php body_class(); ?> >

    <?php endif;

    global $wp_customize;

    /* Preloader */

    if(is_front_page() && !isset( $wp_customize ) && get_option( ‘show_on_front’ ) != ‘page’ ):

    $zerif_disable_preloader = get_theme_mod(‘zerif_disable_preloader’);

    if( isset($zerif_disable_preloader) && ($zerif_disable_preloader != 1)):
    echo ‘<div class=”preloader”>’;
    echo ‘<div class=”status”> </div>’;
    echo ‘</div>’;
    endif;

    endif; ?>

    <header id=”home” class=”header”>

    <div id=”main-nav” class=”navbar navbar-inverse bs-docs-nav” role=”banner”>

    <div class=”container”>

    <div class=”navbar-header responsive-logo”>

    <button class=”navbar-toggle collapsed” type=”button” data-toggle=”collapse” data-target=”.bs-navbar-collapse”>

    <span class=”sr-only”><?php _e(‘Toggle navigation’,’zerif-lite’); ?></span>

    <span class=”icon-bar”></span>

    <span class=”icon-bar”></span>

    <span class=”icon-bar”></span>

    </button>

    <?php

    $zerif_logo = get_theme_mod(‘zerif_logo’);

    if(isset($zerif_logo) && $zerif_logo != “”):

    echo ‘‘;

    echo ‘<img src=”‘.$zerif_logo.'” alt=”‘.get_bloginfo(‘title’).'”>’;

    echo ‘‘;

    else:

    echo ‘‘;

    if( file_exists(get_stylesheet_directory().”/images/logo.png”)):

    echo ‘<img src=”‘.get_stylesheet_directory_uri().’/images/logo.png” alt=”‘.get_bloginfo(‘title’).'”>’;

    else:

    echo ‘<img src=”‘.get_template_directory_uri().’/images/logo.png” alt=”‘.get_bloginfo(‘title’).'”>’;

    endif;

    echo ‘‘;

    endif;

    ?>

    </div>

    <nav class=”navbar-collapse bs-navbar-collapse collapse” role=”navigation” id=”site-navigation”>
    <?php _e( ‘Skip to content’, ‘zerif-lite’ ); ?>
    <?php wp_nav_menu( array(‘theme_location’ => ‘primary’, ‘container’ => false, ‘menu_class’ => ‘nav navbar-nav navbar-right responsive-nav main-nav-list’, ‘fallback_cb’ => ‘zerif_wp_page_menu’)); ?>
    </nav>

    </div>

    </div>
    <!– / END TOP BAR –>

  • The topic ‘Meta Slider in Zerif Lite problem’ is closed to new replies.