raider 0 Report post Posted July 8, 2011 Is there a way somewhere in the template to make the logo that i add through the interface to link to something other than the home page of the blog. I'm using platformpro as part as a greater site that has another home page Share this post Link to post Share on other sites
bevj 0 Report post Posted July 8, 2011 http://www.pagelines.com/forum/topic/11123 Share this post Link to post Share on other sites
kastelic 6 Report post Posted July 8, 2011 Open platformpro/includes/library.templates.php and around line 322 you will find the pagelines_custom_logo() function. You can filter this function in base. Here's an example of doing that that changes the url to google: ` add_filter ( 'pagelines_site_logo', 'myfilter'); function myfilter($site_logo){ $site_logo = sprintf( '', 'http:google.com', get_bloginfo('name'), esc_url(pagelines_option('pagelines_custom_logo')), get_bloginfo('name')); return $site_logo; } ` Share this post Link to post Share on other sites