Yahamaga
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Not Visible Post text only show tag and titleThanks alchymyth,
My problam is solved. Problem is plugins
Forum: Fixing WordPress
In reply to: Not Visible Post text only show tag and titlei 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’ );
}
====================Forum: Fixing WordPress
In reply to: Not Visible Post text only show tag and titleI 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(); ?>
============