Jump to content
Sign in to follow this  
revivalasia

Replace footer Pagelines Lead Logo???

Recommended Posts

revivalasia

Bottom Pagelines leaf logo - i have added my own logo but how do i reference that to my site (href) and the title?

Share this post


Link to post
Share on other sites
kastelic

You can filter the pagelines_cred() function which is in library.templates.php around line 458. Something like this, I haven't tried it (paste into platformbase/functions.php):

	add_filter('pagelines_cred','credfilter');
	function credfilter($url){
		$url = "http://google.com";
		return $url;
	}
	
	

Share this post


Link to post
Share on other sites
revivalasia

I think the code is close but it did not work - so i just hacked the main file. Not the best solution I would like to do it the filter way if i knew how ;-)

Share this post


Link to post
Share on other sites
Kate

@revivalasia I don't think Jimmy saw it was EcoPro, not PlatformPro. I'm actually not sure in this instance. Did you check the footer.php file?

Share this post


Link to post
Share on other sites
revivalasia

That was my mistake it is Platform pro and i fixed it. thanks ;-)

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×