Change logo link in Architect theme
-
Hi everybody!
I’ve been trying to change the link for the logo in my Architect theme. I can’t change it in the options menu of the theme or elsewhere, so I guess I should look for it somewhere in the header.php.
Been looking for HOURS now in different PHP and CSS files and can’t seem to find it anywhere ??
The adress of my website is: https://www.guesthouse-recover.com
The logo links to https://www.guesthouse-recover.com/wordpress (which is a dead link)I guess it probably links there because the theme folder is placed in a folder inside the root
I’d like to change the link to the website homepage or nowhere at all. Hope you guys can help me
Here is the header.php code:
<!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> <?php $marker = get_field('google_map_marker', 'options'); if(isset($marker['url'])){ $marker = $marker['url']; } ?> <script> var template_directory = "<?php echo get_template_directory_uri(); ?>"; var ajax_url = "<?php echo admin_url('admin-ajax.php'); ?>"; var postId = "<?php echo (isset($post->ID)) ? $post->ID : 0 ; ?>"; var marker_img = "<?php echo esc_url($marker);?>"; </script> <?php if ( ! function_exists( '_wp_render_title_tag' ) ) { function architect_render_title() { ?> <title><?php wp_title( '|', true, 'right' ); ?></title> <?php } add_action( 'wp_head', 'architect_render_title' ); } ?> <!-- Css --> <?php if(get_field('custom_css', 'options')){ ?> <style> <?php the_field('custom_css', 'options'); ?> </style> <?php } ?> <?php wp_head(); ?> </head> <body <?php body_class(); ?> > <!-- Loader --> <?php if(get_field('enable_preloader', 'options')){ ?> <div id="loader"> <div class="outer"> <div class="inner text-center middle"> <?php if($preload_logo = get_field('preloader_logo', 'options')){ ?> <img src="<?php echo esc_url($preload_logo); ?>" alt="<?php bloginfo('name'); ?>" /><br> <?php } ?> <ul class='loader'> <li class='one' style="background: <?php the_field('one', 'options')?>"></li> <li class='two' style="background: <?php the_field('two', 'options')?>"></li> <li class='three' style="background: <?php the_field('three', 'options')?>"></li> <li class='four' style="background: <?php the_field('four', 'options')?>"></li> <li class='five' style="background: <?php the_field('five', 'options')?>"></li> </ul> </div> </div> </div> <?php } ?> <?php get_template_part('menu'); ?>
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘Change logo link in Architect theme’ is closed to new replies.