please advice me about my blogger blog

Discussion in 'Blogging' started by syedakram, Aug 11, 2009.

  1. #1
    i made a blogger blog some days ago,
    and now 7 pages have indexed in google,
    but the problem is when you see the indexed pages this is appearing
    [​IMG],
    every post is showing with the blog title and blog description,
    i want to show the different title and descriptions for every blog,
    please tell me how can i do this.
     
    syedakram, Aug 11, 2009 IP
  2. dmssrinivas

    dmssrinivas Well-Known Member

    Messages:
    257
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    108
    #2
    The is a condition that you need to add to the title tag in the template.

    First go to the template and find
    <title><data:blogTitle/></title>
    Code (markup):
    Then add a condition like this instead of the above line,

    <b:if cond='data:blog.pageType == &quot;index&quot;'>
    <title><data:blog.title/></title>
    <b:else/>
    <title><data:blog.pageName/></title>
    </b:if>
    Code (markup):
     
    dmssrinivas, Aug 11, 2009 IP
  3. dmssrinivas

    dmssrinivas Well-Known Member

    Messages:
    257
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    108
    #3
    This is only for Title and I dont know how to do it for description.
     
    dmssrinivas, Aug 11, 2009 IP
  4. syedakram

    syedakram Guest

    Messages:
    39
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    thanks friend i will try this
     
    syedakram, Aug 11, 2009 IP
  5. TheOwl

    TheOwl Peon

    Messages:
    34
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    syedakram,

    try this solution...

    add this tag;

    <head>
    <b:if cond='data:blog.url == data:blog.homepageUrl'>
    <meta content='YOUR BLOG DESCRIPTION' name='description'/>
    </b:if>
    <meta content='YOUR KEYWORDs' name='keywords'/>
    <b:include data='blog' name='all-head-content'/>
    <b:if cond='data:blog.pageType == &quot;item&quot;'>
    <title><data:blog.pageName/> | <data:blog.title/></title>
    <b:else/><title><data:blog.pageTitle/></title>
    </b:if>
    <b:skin><![CDATA[

    resolve duplicate meta tag and description issue... work's fined for me..
     
    TheOwl, Aug 11, 2009 IP
  6. susan8051

    susan8051 Peon

    Messages:
    1,358
    Likes Received:
    49
    Best Answers:
    0
    Trophy Points:
    0
    #6
    susan8051, Aug 11, 2009 IP
  7. syedakram

    syedakram Guest

    Messages:
    39
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    but friend what is that <head> tag on the top,
    please let me know.
     
    syedakram, Aug 12, 2009 IP
  8. TheOwl

    TheOwl Peon

    Messages:
    34
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #8
    yo bro..

    login to your blogger account and go edit HTML and expand HTML..

    search for <head> tag..

    Between <head> tag and <b:skin> tag

    Replace it with this code

    <b:if cond='data:blog.url == data:blog.homepageUrl'>
    <meta content='YOUR BLOG DESCRIPTION' name='description'/>
    </b:if>
    <meta content='YOUR KEYWORDs' name='keywords'/>
    <b:include data='blog' name='all-head-content'/>
    <b:if cond='data:blog.pageType == &quot;item&quot;'>
    <title><data:blog.pageName/> | <data:blog.title/></title>
    <b:else/><title><data:blog.pageTitle/></title>
    </b:if>
     
    TheOwl, Aug 13, 2009 IP