• Resolved sribharath

    (@sribharath)


    hi ,

    i want to change the placement of additional home keywords which are displaying by using all in one seo plugin .

    i want to change it to some other place ..wht is the code used to display this ..so tht i can locate it and replace it

    my site is

    https://karomasti.com/telugu-cinema/

Viewing 10 replies - 1 through 10 (of 10 total)
  • Not sure what you mean by changing the placement?

    Like where it shows up in your source code?

    If I’m not mistaken….all the plugins that insert meta, script, etc into your header do it at the point where you have
    <?php wp_head(); ?>
    coded in. I’m not sure how you would rearrange things….I have like 6 plugins that just drop stuff in my header, it seems relatively random…..

    Thread Starter sribharath

    (@sribharath)

    let me explain..

    if u my site u can see

    on the top u can notice additional home page keywords

    “telugu movie songs , telugu cinema , telugu movie reviews , telugu cinema reviews ,telugu movie stills , telugu cinema stills “

    it looks odd with the design, i want to change the place where it appears

    some thing like this

    https://teluguwave.net

    this site uses the same theme as mine ..but made necc changes to dispaly home keywords in header nav bar ..

    i want to do some thing liek this

    and for instance can u tell me what code is used to call additional home page keywords to display it in hoem page

    Those shouldn’t actually be showing up at all I don’t think? The meta from all in one seo is normally not shown.

    I think you’ve got an error on your page….?

    You have a bunch of css and script links coming in at the wrong place….
    it’s all coming in in your <body> section, and I believe that should all be in your <head> section….

    which makes me think that you have the <?php wp_head(); ?> in the wrong place in your theme?

    Do you have that after the <body> tag in your header.php? It should be before the </head> I believe

    That may clear up some of these errors:
    https://validator.w3.org/check?uri=http%3A%2F%2Fkaromasti.com%2Ftelugu-cinema%2F&charset=%28detect+automatically%29&doctype=Inline&group=0

    and will also solve your original question

    Thread Starter sribharath

    (@sribharath)

    yeah i was testing it thats the reason u r seeing errors .. any ways i will do tht ..thanks buddy u just rock ..

    Thread Starter sribharath

    (@sribharath)

    i have changed it to my desired place

    and also moved head tag after that

    is that right ?

    is that showing errors even now ?

    pls help

    thanks RVoodoo

    Nope still not right…..you can’t have any of your display stuff above the </head> tag

    <?php wp_head(); ?>
    </head>
    <body>
    <div id="wrapper">
    
    	<div id="header1">
    
    		<div id="subscribe"><a href="https://karomasti.com/telugu-cinema/feed/rss/" rel="nofollow" title="Subscribe to latest posts in RSS">Posts</a> | <a href="https://karomasti.com/telugu-cinema/comments/feed/" rel="nofollow" title="Subscribe to latest comments in RSS">Comments</a> | <a href="" rel="nofollow" title="Subscribe to latest posts via email">E-mail</a> / </div>
    
    		<div id="date"><script type="text/javascript" src="https://karomasti.com/telugu-cinema/wp-content/themes/extrafun/javascript/date.js"></script></div>
    
    		<div class="clear"></div>
    
    	</div><!-- enf od topBar -->

    is how it has to go. Links, script, meta, etc all goes in between <head> and </head>

    all the stuff used to display things
    like <div id="wrapper> etc…. all has to go below <body>

    Thread Starter sribharath

    (@sribharath)

    oh but how to show this additional keywords there ..

    the site teluguwave.net is displaying it in the same place but has no errors

    whts wrong with this ??

    and also u said that The meta from all in one seo is normally not shown.

    how to hide this to user and available to search engines ?

    thats what meta is. It goes up in the <head> section for search engines to see, but users are not able to see it.

    The other site you pointed out to me doesn’t use all in one seo to display those tags up at the top. That’s not what all in one seo does. You don’t see any of the stuff that pluing does if you use it right, it’s for search engines.

    That telugawave.net site has those words coded into their theme. The source code looks like this:
    <div style="text-align: center;"><h1 style="font:11px Arial, Helvetica, sans-serif; color: #CCCCCC;">Telugu News, Actress Photos, Telugu Songs, Videos, Movies Trailers, Wallpapers, Teluguwave</h1></div>

    Thread Starter sribharath

    (@sribharath)

    oh ok it means that he had used as a text in theme

    ok i got u

    any ways many many thanks to you for ur time and support

    with regards

    sure thing!

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘additional home headers’ is closed to new replies.