Enough info

WordPress theme Enough

この画面は、簡易表示です

BugReport Enough1.05

ステータス 

Enough1.05 has Bug

Image overflow when using widget pinup entries .

Quick Fix

css/post-format.css

.approach-widget img{
 max-width:100%;
}

Unintended content is displayed at the bottom of the page When it is set to 1 column

Quick Fix

taxonomy.php line:49

if ( !has_post_format( 'image' ) ) {

 enough_dinamic_sidebar( 'sidebar-1', !is_page() );
}

Change from above to below


printf( '<div class="posts-nav-link">%1$s</div>', get_posts_nav_link( array( 'sep'=> ' ', 'prelabel'=> esc_html__( 'Previous Page', 'enough' ), 'nxtlabel'=> esc_html__( 'Next Page', 'enough' ) ) ) );
/* change start */

if ( ! has_post_format( 'image' ) && enough_theme_option('enough_post_one_column_bottom_sidebar') !== 'yes' ) {

 enough_dinamic_sidebar( 'sidebar-1', !is_page() );
} else {?>
	<br class="clear" />
	<?php
}
/* change end */
enough_the_footer();

This Bug will be Fixed next version.




ちょっと変わったテーマですが、

enoughテーマは、投稿フォーマットを選択して、ご自身のブログの目的に合わせて、フォトブログや、ページのブックマークなど特定の用途での利用にフォーカスしています。

そのために、独自のインターフェースを工夫してまいりました。

少し戸惑うかもしれませんが、テーマの使い方を理解できれば 従来にない快適なブログライフを実現できるものと考えています。

どうかよろしく




top