Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter Yahamaga

    (@yahamaga)

    Thanks alchymyth,

    My problam is solved. Problem is plugins

    Thread Starter Yahamaga

    (@yahamaga)

    i am Using ‘musica‘ Themes

    Code of contents.php
    ==================
    <?php
    $kopa_setting = kopa_get_template_setting();

    if ( is_home() || is_archive() || is_search() ) {
    if ( ‘blog-2’ == $kopa_setting[‘layout_id’] ) {
    get_template_part( ‘library/templates/loop’, ‘blog-2’ );
    } else {
    get_template_part( ‘library/templates/loop’, ‘blog’ );
    }
    } elseif ( is_page() ) {
    get_template_part( ‘library/templates/loop’, ‘page’ );
    } elseif ( is_single() ) {
    get_template_part( ‘library/templates/loop’, ‘single’ );
    } else {
    get_template_part( ‘library/templates/loop’, ‘blog’ );
    }
    ====================

    Thread Starter Yahamaga

    (@yahamaga)

    I think themes not problam because I Changed another themes but problem not solved. pls help me
    my current themes index.php code
    ===========
    <?php
    $kopa_setting = kopa_get_template_setting();
    $sidebars = $kopa_setting[‘sidebars’];
    ?>

    <?php get_header(); ?>

    <div id=”main-content”>
    <div class=”wrapper clearfix”>
    <div class=”col-a”>
    <?php kopa_breadcrumb(); ?>
    <?php get_template_part(‘library/templates/contents’); ?>
    </div>
    <!– col-a –>
    <div class=”sidebar col-b widget-area-2″>
    <?php if ( is_active_sidebar( $sidebars[0] ) ) {
    dynamic_sidebar( $sidebars[0] );
    } ?>
    </div>
    <!– col-b –>
    <div class=”clear”></div>
    </div>
    <!– wrapper –>
    <div class=”wrapper”>
    <div class=”widget-area-7″>
    <?php if ( is_active_sidebar( $sidebars[1] ) ) {
    dynamic_sidebar( $sidebars[1] );
    } ?>
    </div>
    <!– widget-area-7 –>
    </div>

    </div>
    <!– main-content –>

    <?php get_footer(); ?>
    ============

Viewing 3 replies - 1 through 3 (of 3 total)