Is this link still the best way to change what url the logo links to?
https://kriesi.at/support/topic/logo-banner-hyperlink/
If the theme is updated will this change be overwritten? Or, will the change prevent proper theme updates?
Hi m!
You can add something like this on functions.php:
add_filter('avf_logo_link', 'avf_change_logo_link');
function avf_change_logo_link($link) {
$link = 'http://www.google.com';
return $link;
}
Change the $link value.
Cheers!
Ismael
When the theme is updated, will it be overwritten?
Hi!
It will, however you can prevent that by using a Child theme.
Best regards,
Josue
@Ismael many thanks for the instructions (works perfectly for me)
Caiser