Enough 0.55がライブになりました
新しい Enoughをお楽しみください
この画面は、簡易表示です
horizontal menu bar (wp nav menu)
Change color and menu centered Custom Header image
Bug fixed can not remove header image. |
|
新しいEnoughをお楽しみください 😉
新しいEnoughをお楽しみください 🙂
The site-title link ‘href’ attribute value is not setted when using slideshow
functions.php line:744
<?php
if($enough_options['enough_use_slider'] !== 'no'){?>
jQuery('header').before('<h1 class="site-title"><a href="<?php home_url();?>" style="color:#<?php echo get_theme_mod("header_textcolor");?>"><?php bloginfo('site-title');?><\/a><\/h1>');
<?php }?>
Please chage from above to below.
Only add ‘echo’ before the function home_url().
<?php
if($enough_options['enough_use_slider'] !== 'no'){?>
jQuery('header').before('<h1 class="site-title"><a href="<?php echo home_url();?>" style="color:#<?php echo get_theme_mod("header_textcolor");?>"><?php bloginfo('site-title');?><\/a><\/h1>');
<?php }?>
This bug will be fixed Enough 0.42
Admin panel Categories text disappear.
add_filter( 'the_category' , 'enough_remove_ref' );
function enough_remove_ref($content){
preg_match( '!(.+)rel="[^"]+"(.+)!', $content, $regs );
return $regs[1].$regs[2];
}
Please Change below.
//add_filter( 'the_category' , 'enough_remove_ref' );
function enough_remove_ref($content){
preg_match( '!(.+)rel="[^"]+"(.+)!', $content, $regs );
return $regs[1].$regs[2];
}
This bug will be fixed Enough ver 0.42
Thank you.
Ver 0.42では、この方法を使わなくても、背景色の設定が思い通りに出来るようになります。
ver0.42以降では、この方法は使わないほうがいいです。
Enoughは、ページと、背景を区別するボーダーがありません。
両側に5%のマージンがあるだけで、ちょっと違和感を感じるという場合は、ページと背景を以下の方法で、区切って表示できます。
style.css
html{
/* add your custom background*/
}
body{
background-clip:content-box;
}