Dear Customers! We're out of the office from the 6th of October to the 11th of October. We sincerely apologize for the inconvenience. For WordPress 5.5.* related issues, please visit this article.
We discovered that the logo link is forwarding the user to the “WordPress Address (URL)” instead of the “Site Address (URL)” (as they assigned under Settings > General).
We need this link to forward to the “Site Address (URL)”.
You're correct about this one, the theme uses the "site_url()" function to get the logo link address. I'm going to update it to home_url() in the next theme update but for now, you may change it yourself by pasting the following code in your child theme's functions.php file:
function engage_logo_url() {
return home_url();
}
}
It's going to overwrite the parent theme's function declaration.
Hello.
We discovered that the logo link is forwarding the user to the “WordPress Address (URL)” instead of the “Site Address (URL)” (as they assigned under Settings > General).
We need this link to forward to the “Site Address (URL)”.
Can you help us to change this?
Thank you in advance,
--
Antonis Paraskevopoulos
General Manager
CORE SOLUTIONS
[email protected]
Hi there!
You're correct about this one, the theme uses the "site_url()" function to get the logo link address. I'm going to update it to home_url() in the next theme update but for now, you may change it yourself by pasting the following code in your child theme's functions.php file:
It's going to overwrite the parent theme's function declaration.
Kind Regards,
Veented Team
Thank you very much for your really very fast reply.
The problem was solved!
Antonis Paraskevopoulos
You're very welcome!
Kind Regards,
Veented Team