Hi,
i’m creating a website for which i have three homepages with three main-menu’s. This because the company is a group with two other branches.
How can i accomplish this? (also with the corresponding logo’s)
Main homepage: B&A Human Resources Groep
sub Main homepage B&A Career Management
sub Mail homepage B&A Prometheus
dev-site: http://bena2.ify-server.net/
In the footer you see the logo’s and from there i want to navigate to the different pages.
Thank you!
Hey JosBlo!
Please add following code to Functions.php file in Appearance > Editor
add_filter('avf_logo','av_change_logo');
function av_change_logo($logo)
{
if(is_page(9) )
{
$logo = "http://bena2.ify-server.net/wp-content/uploads/2015/07/logo-b-en-a-career-management-300x125.png";
}
if(is_page(5) )
{
$logo = "http://bena2.ify-server.net/wp-content/uploads/2015/07/logo-b-en-a-prometheus-300x125.png";
}
return $logo;
}
and change page ID’s as needed. You can right click on Chrome or Firefox to inspect elements to find page ID’s http://i.imgur.com/HyPTCRg.jpg
Cheers!
Yigit
Yigit,
thank you for your quick reply (and sorry for my late response).
Best regards, Jos
Hi!
You are welcome, we are always happy to help :)
For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)
Regards,
Yigit