Viewing 3 replies - 1 through 3 (of 3 total)
  • dear sannemeijboom.
    u go in ur themes folder and open header.php file.
    line number 24

    <h1 id="logo">
       <img src="<?php echo bloginfo('template_directory'); ?>/img/logos/<?php       echo get_option('organic_theme_logo'); ?>.gif" class="small-logo" alt="logo" width="40" height="40" />
    <strong><a href="<?php bloginfo('url'); ?>/"></strong>
      <?php bloginfo('name'); ?>
    </a>
    </h1>

    <a href="https://www.example.com"></a>this tag in href to add ur url.

    Kind sir,

    Would you PLEASE be my hero and point me where I can change this in my theme? I’ve been looking for it for HOURS, but I can’t seem to find it. I hope you are willing to help me ??

    My website adress is: https://www.guesthouse-recover.com

    This is the code from my header.php

    <!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'); ?>

    Thanks in advance ??

    Dear sjaakspaak,

    can your please paste your menu.php file code.

    Best Regards,
    dev.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to change logo url’ is closed to new replies.