• Resolved mdallavecchia

    (@mdallavecchia)


    Hi
    For the plugin “Events Calendar” from Modern Tribe http://tri.be/?ref=tec-plugin I need a template of the page.php without sidebar.
    What do I have to modify to remove the sidebar in the template?

    <?php
    /**
    * The Page (Full width) template file.
    * @package WPLOOK
    * @subpackage BlogoLife
    * @since BlogoLife Pro 1.0.0

    */
    get_header();
    $hasSidebar = “”;
    $sidebar = get_post_meta($post->ID,’wpl_enable_sidebar’,true);
    get_template_part(‘content’, ‘page’ ) ;

    if($sidebar==”false” ) {
    echo ‘<div class=”clear”></div>’;
    } else {
    get_sidebar();
    }

    get_footer(); ?>

    http://wordpress.org/extend/themes/blogolife/

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Theme: BlogoLife] Blogolife template page without sidebar’ is closed to new replies.