Wordpress Themes - WP Forum at BFA
There will be no more development for Atahualpa (or any other theme), and no support. Also no new registrations. I turned off the donation system. I may turn the forum to read only if it gets abused for spam. Unfortunately I have no time for the forum or the themes. Thanks a lot to the people who helped in all these years, especially Larry and of course: Paul. Take care and stay healthy -- Flynn, Atahualpa developer, Sep 2021

Wordpress Themes - WP Forum at BFA » WordPress Themes » Atahualpa 3 Wordpress theme » New Versions, & Updating »

[SOLVED] Having problems with rotating header image and tagline in upgrade from 3.5.3


  #1  
Old Feb 15, 2011, 02:52 PM
threedogmoon
 
28 posts · May 2010
NYC
Unhappy [SOLVED] Having problems with rotating header image and tagline in upgrade from 3.5.3

The website is http://www.pupsdaily.com

Problem with header image: At one point it shows no image at all for some reason (only shows background).

Problem with tag line: It keeps showing the tag line even though I have it set to off. This wasn't a problem in 3.5.3

I made the following mods to bfa_header_config.php in Atahualpa 3.5.3 to show my logo up over the left sidebar:

Line 334:
Code:
// END: If Header Opacity 

	if ( $bfa_ata['overlay_blog_title'] == "Yes" OR $bfa_ata['overlay_blog_tagline'] == "Yes" ) {
		echo '<div class="titleoverlay"><a href="http://www.pupsdaily.com"><img class="logo"
  src="http://www.pupsdaily.com/wp-content/themes/atahualpa/images/logo.png" 
alt="Helping Dogs find Homes" /></a>'; 
		if ($bfa_ata['overlay_blog_title'] == "Yes") {
			echo '<h' . $bfa_ata['h_blogtitle'] . ' class="blogtitle"><a href="'; bloginfo('url'); echo '/">'; 
			bloginfo('name'); echo '</a></h' . $bfa_ata['h_blogtitle'] . '>';
		}
		if ($bfa_ata['overlay_blog_tagline'] == "Yes") {
			echo '<p class="tagline">'; bloginfo('description'); echo '</p>';
		}
		echo '</div>';
I made these changes to bfa_header_config.php in Atahualpa 3.6.4:
Line 333:
Code:
// END: If Header Opacity 

		if ( $bfa_ata['overlay_blog_title'] == "Yes" OR $bfa_ata['overlay_blog_tagline'] == "Yes" ) 
		{
			echo '<div class="titleoverlay"><a href="http://www.pupsdaily.com"><img class="logo"
  src="http://www.pupsdaily.com/wp-content/themes/atahualpa/images/logo.png" 
alt="Helping Dogs find Homes" /></a>'; 
			
			if ( $bfa_ata['overlay_blog_title'] == "Yes" ) {
				echo '<h' . $bfa_ata['h_blogtitle'] . ' class="blogtitle"><a href="' . $homeURL . '/">'; 
				bloginfo('name'); echo '</a></h' . $bfa_ata['h_blogtitle'] . '>';
			}
			
			if ( $bfa_ata['overlay_blog_tagline'] == "Yes" ) 
				echo '<p class="tagline">'; bloginfo('description'); echo '</p>';

			echo '</div>';
I appreciate the help, and I have donated!
  #2  
Old Feb 15, 2011, 05:11 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
it seems to be this code in your footer
HTML Code:
<script src="http://www.pupsdaily.com/wp-content/plugins/tweetmeme/button.js" type="text/javascript"></script>    
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #3  
Old Feb 15, 2011, 05:22 PM
threedogmoon
 
28 posts · May 2010
NYC
Thanks, disabling that plugin fixed the disappearing header image problem.

Do you happen to know why I am unable to hide the wordpress tagline any more?
  #4  
Old Feb 15, 2011, 06:02 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
Just what is th etabline and wheere is it showing?

(you need to flush the wp-super-cache cache, the error is still showing up.)
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #5  
Old Feb 15, 2011, 06:08 PM
threedogmoon
 
28 posts · May 2010
NYC
Supercache is inactive. I'm not sure what error you're talking about.

The tagline is:
"Helping Dogs find Homes All Dogs up for Adoption. Helping Dogs Find Homes!"

It is showing up at the top left next to the logo. Atahualpa has a setting to shut this off, which worked in 3.5.3 but now does not work in 3.6.4

I modded the file above to show my logo over the left sidebar, but the code in the new (3.6.4) version has changed some.

Last edited by threedogmoon; Feb 15, 2011 at 06:27 PM.
  #6  
Old Feb 16, 2011, 11:37 AM
threedogmoon
 
28 posts · May 2010
NYC
Tagline is coming from somewhere else....

Is there any database entry I need to clear or something. It seems like atahualpa is just not registering the setting to turn off the tagline from the settings page.

The tagline showing up at the top of my site is showing up unstyled. I have atahualpa set to not show the tagline with a No in the selection window. I tried changing the code in the line from "Yes" to "No" (bfa_header_config) basically reversing the control to turn it on and off. When I do this, the tag line shows up in bright blue text the way I have it styled. So the unstyled tagline you see at the top of my site now is being pulled in some other way, which explains why atahualpa settings don't work on it....and I am not sure how its being pulled up there.

Code:
	if ( $bfa_ata['overlay_blog_tagline'] == "No" ) 
				echo '<p class="tagline">'; bloginfo('description'); echo '</p>';
Basically, it seems like this newer version of Atahualpa is not able to control the tagline if it is filled in in the wordpress general settings, whereas the old Atahualpa was able to do so. Let me know if I am wrong, but I think that the only solution is to delete the text I have entered there.

Last edited by threedogmoon; Feb 16, 2011 at 11:58 AM. Reason: Tried something else

Bookmarks

Tags
config, header, image, logo, tag line

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
rotating header image not working after images/header folder delete cpickeri Header configuration & styling 7 Oct 12, 2011 05:03 AM
Rotating headers cover up overlaid tagline Stevesamps Header configuration & styling 2 Sep 13, 2010 12:20 AM
Thanks for JS header image rotating Colorblinded Header configuration & styling 2 May 12, 2010 01:42 PM
rotating image header- more than one? ortixia Header configuration & styling 1 Nov 26, 2009 06:24 PM


All times are GMT -6. The time now is 10:48 AM.


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