I have a right conundrum for you… How would I go about creating two separate home page logos to be displayed on the same site. I have a company (group) with two different sides of the business, one – Home improvements and one Trade. He wants a home page with two big buttons to go to different clearly defined sites with different menus. Different logos – same companies. How the heck would I be able to achieve that? Any clues?
Hey Paul!
You can use this plugin – https://wordpress.org/plugins/zen-menu-logic/ to display different menu per page.
And you can add following code to Functions.php file in Appearance > Editor to display different logo on certain pages
add_filter('avf_logo','av_change_logo');
function av_change_logo($logo)
{
if(is_page(9) )
{
$logo = "http://kriesi.at/wp-content/themes/kriesi/images/logo.png";
}
return $logo;
}
However, i think using subdomains would be easier for you :)
Best regards,
Yigit
Thanks loads for your quick response – as ever. Could you just explain what you mean by a subdomain – how would that work using wordpress and your theme. Would I need to purchase it twice? Would I have two wordpress accounts/databases running independently?