Hi
I need to put an alternate logo image in mobile
How can I do this in Enfold?
Thanks
Hey Ramiro,
You could try using this filter in your child theme functions.php
/*Use a different logo on mobile*/
add_filter('avf_logo','av_change_logo');
function av_change_logo($logo)
{
if(wp_is_mobile() )
{
$logo = "http://kriesi.at/wp-content/themes/kriesi/images/logo.png";
}
return $logo;
}
Please adjust the url to yours.
Best regards,
Mike
Thanks,
I’ll try