Enough info

WordPress theme Enough

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

2012 / 9月

Bug report: site-title link is broken when using slideshow

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




top