Important:
This support area is for Kalium 3 users only.
Support for Kalium 4 has moved to our new platform at support.laborator.co.
If you’re using Kalium 4, please create a new account there using your email and license key. A password will be sent to you automatically.
Hi, I'm looking to change the hyperlink of the logo in the header, so that clicking it will redirect the user to an external homepage rather than the Wordpress front page. Where can I find the code for this in the themes file directory?
Hi hrobotics,
The logo in our theme uses WP Hook filter to allow users change logo URL to their preferred one:
function set_custom_logo_url( $old_url ) { return "https://newurl.com/"; } add_filter( 'kalium_logo_url', 'set_custom_logo_url' );This code should be added in functions.php to change the logo URL.