seeyou30 1 Report post Posted May 30, 2011 Hi! I know its been discussed before but I still cant get how to point logo (header and footer) in multisite install to the main site. I have sub-site (site.com/sub) with separate PlatformPro on it, so its logo points to itself. I need it to point to main site (site.com) Hope I clearly described my problem))) Thanks in advance Share this post Link to post Share on other sites
timlinson 3 Report post Posted May 30, 2011 Did you try Catrina's solution from this thread yet? http://www.pagelines.com/forum/topic/6319 Open the library.templates.php file in your theme folder (core > library) and find this code: ` Share this post Link to post Share on other sites
seeyou30 1 Report post Posted May 30, 2011 im usuing latest update (1.5) yes, i tried to find it in library.templates.php file but i found only these lines, so im confused what to change: $site_logo = sprintf( '', home_url(), get_bloginfo('name'), esc_url(pagelines_option('pagelines_custom_logo')), get_bloginfo('name')); echo apply_filters('pagelines_site_logo', $site_logo); Share this post Link to post Share on other sites
timlinson 3 Report post Posted May 30, 2011 Actually go to Appearance > Themes, set Platform Base as the active theme, and use this hook instead in platformbase/functions.php. This is better practice than changing the core files. http://www.pagelines.com/forum/topic/9314#post-50906 Change `http://your_url.com` to your main site's url. Share this post Link to post Share on other sites
seeyou30 1 Report post Posted May 30, 2011 Tim! Thanks for help, it worked! but only for header logo. footer logo still points to site.com/sub what can be done to point footer logo to the main site as well? tnx Share this post Link to post Share on other sites
cmunns 16 Report post Posted May 30, 2011 create a file called template.footcols.php in PlatformBase. In that file copy everything inside of the brackets for the `function section_template()` from the original section.footcols.php Then you can modify the code as you wish...in this case you are just changing the default footer widgets set forth in the theme Just look for the first widget there and change this: `<?php echo home_url(); ?>` to your own link Share this post Link to post Share on other sites
seeyou30 1 Report post Posted May 31, 2011 Adam! I did it! Success! Share this post Link to post Share on other sites