Comments 2DANIEL BASTOS started the conversationFebruary 15, 2020 at 5:25pmHi, I need that the logo going to other website, because I am doing a help page for other website.And I dont know how to do it, for me the logo only go for the same website, in case ajuda.leiloesbr.com.br, but I need that goes to leiloesbr.com.brExample: When click the logo goes to leiloesbr.com.brBest Regards Daniel 1,560Laborator repliedFebruary 18, 2020 at 9:20amHi Daniel, If you are using the Kalium Child theme then go to Appearance > Editor and in the functions.php file of the child theme add this code: if (!function_exists('replace_logo_url')){ function replace_logo_url(){ return home_url() . 'https://www.google.com'; } add_filter( 'kalium_logo_url', 'replace_logo_url', 99 ); } Here you can find more information why we use the child theme.Best regards,Laborator Team Documentation Join Kalium Users Group Sign in to reply ...
Hi,
I need that the logo going to other website, because I am doing a help page for other website.
And I dont know how to do it, for me the logo only go for the same website, in case ajuda.leiloesbr.com.br, but I need that goes to leiloesbr.com.br
Example: When click the logo goes to leiloesbr.com.br
Best Regards Daniel
Hi Daniel,
If you are using the Kalium Child theme then go to Appearance > Editor and in the functions.php file of the child theme add this code:
Here you can find more information why we use the child theme.
Best regards,
Laborator Team