My pleasure. I should have shared this in the first place.
Also note that this code has been deleted after my wp updated automatically. I don’t know if that is the case for every update and I don’t know the permanent solution.
@luapi Under “Appearance > Theme Editor” I’ve added lines to “inc/functions.php” as following:
/**************************************************************************************/
add_filter( 'get_custom_logo', 'change_logo_url' );
function change_logo_url( $html ) {
$html = str_replace( 'href="https://blog.kuyruk.com/"', 'href="https://kuyruk.com/"', $html );
return $html;
}
/**************************************************************************************/
I’ve fixed the issue by getting help from irc chat. Edited the functions.php.
Thank you anyways.
Bora