Hu Guys,
I have using this hack to replace the logon on mobile but it does not seem to work. Any thoughts?
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;
}
Thanks,
D
Hi dhuet!
Have you checked your website on an actual mobile device? You cannot see the changes by resizing browser window
Cheers!
Yigit
Actually it worked. My bad. I have the new logo behind a firewall. Thank you so much anyway.