Wordpress Themes - WP Forum at BFA

Wordpress Themes - WP Forum at BFA (http://forum.bytesforall.com/index.php)
-   Old Version fixes and change logs (http://forum.bytesforall.com/forumdisplay.php?f=37)
-   -   BUGFIX 364-04: Tagline will show when Overlay Blog TITLE over Header Image(s)? = yes (http://forum.bytesforall.com/showthread.php?t=12894)

juggledad Feb 19, 2011 05:09 PM

BUGFIX 364-04: Tagline will show when Overlay Blog TITLE over Header Image(s)? = yes
 
1 Attachment(s)
If the option 'Overlay Blog TITLE over Header Image(s)?' is set to YES, the Tag line will also overlay the header image even if the option 'Overlay Blog TAGLINE over Header Image(s)?' is set to 'No'


This is caused by a missing set of brackets in an 'IF' statement. This error was introduced in 3.6.0.

To fix it, edit bfa_header_config.php and change lines 344-345 from
HTML Code:

                        if ( $bfa_ata['overlay_blog_tagline'] == "Yes" )
                                echo '<p class="tagline">'; bloginfo('description'); echo '</p>';

to
HTML Code:

                        if ( $bfa_ata['overlay_blog_tagline'] == "Yes" ) {
                                echo '<p class="tagline">'; bloginfo('description'); echo '</p>';
                        }

or you can download and unzip the attached file and upload it to your host. Put it in the 'atahualpa/functions' folder replacing the original.
Attachment 1174


All times are GMT -6. The time now is 06:55 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.