We’re looking to have a combined website that supports two different brands. An example of this can be found on this page (look at the top left logos – Leatherman and LED Lenser and you’ll see what I mean)
Is this possible with the Enfold theme, or can a customisation be made?
Hey markgibbons243!
Are you referring to the lenser and leatheman image link at the very top of the page? You can use a filter like this on functions.php:
add_action('avia_meta_header', 'avia_meta_header_mod');
function avia_meta_header_mod() {
echo "<div id='header-logo1'><a href="URL 1 HERE"><img src='IMAGE URL HERE'></a></div>";
echo "<div id='header-logo2'><a href="URL 2 HERE"><img src='IMAGE URL HERE'></a></div>";
}
Add the image url and links. Make sure that have a Enfold Secondary Menu set on Appearance > Menus panel and Enfold > Header > Extra Elements Header Secondary Menu option.
Cheers!
Ismael
That’s amazing support thank you so much!
Where do I find the functions.php?
Hi!
Function.php is located in the root of your theme folder or in your child theme if you are using one, we recommend to use a child theme if you are going to do customisations. More info on child themes here: http://kriesi.at/documentation/enfold/using-a-child-theme/
Best regards,
Rikard