• Resolved clipscapital

    (@clipscapital)


    I am trying to verify my blog with Google, but I am not sure where I am supposed to put the code provided.

    “Copy the meta tag below, and paste it into your site’s home page. It should go in the <head> section, before the first <body> section.

    <meta name=”verify-v1″ content=”hxHgDwD8ldPEoGuneJuZBX2+0rS2/ZLcwrBUK7zBBW0=” />”

    I can not find this anywhere, does anybody know where it should go in the inove theme?

Viewing 7 replies - 1 through 7 (of 7 total)
  • Your theme should have a header.php file. You should place this anywhere between the open <head> and closed </head>

    Thread Starter clipscapital

    (@clipscapital)

    I do no not see them in there, this is all I see in the header.php

    <!– header START –>
    <div id=”header”>

    <!– banner START –>
    <?php if( $options[‘banner_content’] && (
    ($options[‘banner_registered’] && $user_ID) ||
    ($options[‘banner_commentator’] && !$user_ID && isset($_COOKIE[‘comment_author_’.COOKIEHASH])) ||
    ($options[‘banner_visitor’] && !$user_ID && !isset($_COOKIE[‘comment_author_’.COOKIEHASH]))
    ) ) : ?>
    <div class=”banner”>
    <?php echo($options[‘banner_content’]); ?>
    </div>
    <?php endif; ?>
    <!– banner END –>
    <div id=”caption”>
    <h1 id=”title”>/”><?php bloginfo(‘name’); ?></h1>
    <div id=”tagline”><?php bloginfo(‘description’); ?></div>
    </div>

    <div class=”fixed”></div>
    </div>
    <!– header END –>

    <!– navigation START –>
    <div id=”navigation”>
    <!– menus START –>
    <ul id=”menus”>
    <li class=”<?php echo($home_menu); ?>”>” href=”<?php echo get_settings(‘home’); ?>/”><?php _e(‘Home’, ‘inove’); ?>
    <?php
    if($options[‘menu_type’] == ‘categories’) {
    wp_list_categories(‘title_li=0&orderby=name&show_count=0’);
    } else {
    wp_list_pages(‘title_li=0&sort_column=menu_order’);
    }
    ?>

    • <!– menus END –>

      <!– searchbox START –>
      <div id=”searchbox”>
      <?php if($options[‘google_cse’] && $options[‘google_cse_cx’]) : ?>
      <form action=”https://www.google.com/cse&#8221; method=”get”>
      <div class=”content”>
      <input type=”text” class=”textfield” name=”q” size=”24″ />
      <input type=”submit” class=”button” name=”sa” value=”” />
      <input type=”hidden” name=”cx” value=”<?php echo $options[‘google_cse_cx’]; ?>” />
      <input type=”hidden” name=”ie” value=”UTF-8″ />
      </div>
      </form>
      <?php else : ?>
      <form action=”<?php bloginfo(‘home’); ?>” method=”get”>
      <div class=”content”>
      <input type=”text” class=”textfield” name=”s” size=”24″ value=”<?php echo wp_specialchars($s, 1); ?>” />
      <input type=”submit” class=”button” value=”” />
      </div>
      </form>
      <?php endif; ?>
      </div>
      <script type=”text/javascript”>
      //<![CDATA[
      var searchbox = MGJS.$(“searchbox”);
      var searchtxt = MGJS.getElementsByClassName(“textfield”, “input”, searchbox)[0];
      var searchbtn = MGJS.getElementsByClassName(“button”, “input”, searchbox)[0];
      var tiptext = “<?php _e(‘Type text to search here…’, ‘inove’); ?>”;
      if(searchtxt.value == “” || searchtxt.value == tiptext) {
      searchtxt.className += ” searchtip”;
      searchtxt.value = tiptext;
      }
      searchtxt.onfocus = function(e) {
      if(searchtxt.value == tiptext) {
      searchtxt.value = “”;
      searchtxt.className = searchtxt.className.replace(” searchtip”, “”);
      }
      }
      searchtxt.onblur = function(e) {
      if(searchtxt.value == “”) {
      searchtxt.className += ” searchtip”;
      searchtxt.value = tiptext;
      }
      }
      searchbtn.onclick = function(e) {
      if(searchtxt.value == “” || searchtxt.value == tiptext) {
      return false;
      }
      }
      //]]>
      </script>
      <!– searchbox END –>

      <div class=”fixed”></div>
      </div>
      <!– navigation END –>

    Can you list the files in the theme folder you are using for your blog?

    Thread Starter clipscapital

    (@clipscapital)

    Templates

    * 404 Template (404.php)
    * Archives (archive.php)
    * Archives Page Template (archives.php)
    * Comments (comments.php)
    * Footer (footer.php)
    * Header (header.php)
    * Links Page Template (links.php)
    * Main Index Template (index.php)
    * Page Template (page.php)
    * Page without sidebar Page Template (page-without-sidebar.php)
    * Search Results (search.php)
    * Sidebar (sidebar.php)
    * Single Post (single.php)
    * Theme Functions (functions.php)
    * Twitter Page Template (twitter.php)

    Styles

    * 404.css (404.css)
    * RTL Stylesheet (rtl.css)
    * Stylesheet (style.css)
    * chinese.css (chinese.css)
    * ie.css (ie.css)
    * pagenavi-css.css (pagenavi-css.css)
    * polls-css.css (polls-css.css)
    * wp-recentcomments.css (wp-recentcomments.css)
    * wp-syntax.css (wp-syntax.css)

    Not sure why your header.php file is missing title tags, meta tags, doctype, body tags, etc. Is this information being held in another file? Also, how are you viewing the header.php file, through the theme editor or through some other ftp client?

    Thread Starter clipscapital

    (@clipscapital)

    You gave me a idea, I was looking at it through the theme editor. When I looked through FTP I was able to locate the tags. Everything is sorted now, thank for you help ??

    You are welcome.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Problem verifying with Google’ is closed to new replies.