I have two facilities:
https://www.mrichards.com.br/
Being on the page
When I click on the logo I need to be directed to
https://www.mrichards.com.br/
How should I proceed?
Thank you
put this to the child-theme functions.php:
add_filter('avf_logo_link','av_change_logo_link');
function av_change_logo_link($link){
$link = "https://www.mrichards.com.br/";
return $link;
}
Hi,
Thank you for sharing your solution @Guenni
For more info please check this link
Best regards,
Vinay