I managed to find the solution myself, thanks to google and internet.
inserting into functions.php:
add_filter( ‘get_custom_logo’, ‘wecodeart_com’ );
function wecodeart_com() {
$custom_logo_id = get_theme_mod( ‘custom_logo’ );
$html = sprintf( ‘%2$s‘,
esc_url( ‘www.google.com’ ),
wp_get_attachment_image( $custom_logo_id, ‘full’, false, array(
‘class’ => ‘custom-logo’,
) )
);
return $html;
}
Just change ‘www.google.com’ to your url required. Hope this helps other users. Would have been helpful if the developers had put in more effort in supporting paid users.