Viewing 15 replies - 1 through 15 (of 25 total)
  • Same here!

    Tristan

    (@mrt209)

    ME 3

    140hours

    (@140hours)

    Me too, and I don’t see the meta keywords either, hello?

    In other words, the most basic SEO functions imaginable are missing from your tool?

    Mine works now. It was very simple. You just have to read the documentation…

    Your header.php file should contain something like this:

    }?>
    <title><?php wp_title(”); ?></title>
    </head>

    Inbetween <title> and </title> you should have <?php wp_title(”); ?> and nothing else for the plugin to work corectly.
    Remind your self that in case of a theme update, you will have to reedit the header.php

    Good Luck!

    boundlessdata

    (@boundlessdata)

    Cipri Palamariu, thank you, that fixed my problem. The only documentation I have only gave the wp_title(”) part of the title section. Is there more documentation that I don’t know about?

    Plugin Contributor Joost de Valk

    (@joostdevalk)

    Meta description and title are different. Solution above will work for title indeed, as for meta description: the plugin will not generate one for you, so to change it, you have to either:

    – if it’s a static page, go to that page and enter a meta description
    – if it’s a posts page, go to SEO -> Titles, and enter a meta description for the homepage there.

    Make sure that:

    <?php wp_head(); ?>

    is included before the closing </head> tag. Otherwise, you will not see your meta description/keywords tags.

    Bill

    @yoast, I don’t understand your solution to the homepage meta description issue. You say “if it’s a posts page, go to SEO -> Titles, and enter a meta description for the homepage there.” If it’s the homepage, it’s not a post page, right?

    Trouble may be that I’m using Thesis, which has its own title, meta description and meata fields for the home page (under Site Options > Home Page SEO). When the title is entered there it is saved, but when the meta description or meta keywords are entered and saved, they do not show show up in the home page code.

    The SEO plugin is working fine for meta d/meta k all other types of pages (pages, posts, etc.) – not just on the home page.

    Thanks, Aaron

    @aaranged, the solution appears to be: use Thesis for the home page title, and use the SEO plug in for all the metas (and the titles for anything that is not the home page).

    The problem relates to Thesis handing over control of the meta descriptions/keywords if it finds a class with the name All_in_One_SEO_Pack. It appears the SEO plug in uses a class with that name. From the code: “Let’s act as though this is AIOSEO so plugins and themes that act differently for that will fix do it for this plugin as well.”

    I guess it’s a bit confusing because on the home page, Thesis does not check for SEO All In One, for the title tag.

    Thanks a lot! This has been troubling me for some time now.

    Thanks Japayne. To be clear for anyone reading this thread, to change the homepage meta description and keywords for a site running Thesis and the Yoast WordPress SEO plugin, navigate to “SEO” button in the left hand admin menu, and select “Titles.” On that page you’ll find the fields “Meta description template” and “Meta keywords template” under the heading “Hompage” – which is where you can enter your description and keywords for the homepage. After doing so, click the save button at the bottom of the page and you’re good to go!

    Michael

    (@mbrownwebnetinteractivecom)

    This is a good post … I am getting the Meta data I’d like to show up in the head, but not where I’d like it ..

    How do I get the rest of it to appear towards the top of the <head> tag.

    As it is now I am using <title><?php wp_title(”); ?></title> .. Which works .. but the rest of my meta data is at the very bottom right before </head> .. Above all of that is info for other plugins / Javascript. I want the J-SCript and other CSS related links to be at the bottom and all of my meta-data towards the top of the <head> tag.

    How do I move all the meta-data to the top.
    I’d like it right below my <title></title> ??

    Thanks.

    hi Michael, I assume you’re not using a Thesis theme if you have control over the title tag and wp_title.

    This is not really an answer but more of an explanation…

    WordPress outputs much of that type of HTML where ever it finds the function wp_head (https://codex.www.ads-software.com/Function_Reference/wp_head) – towards the closing head tag seems to be where most people put it.

    The problem (as I understand your question) is that a number of plug ins and custom functionality add tags to wp_head and so what is returned depends on what you have installed.

    In the past I usually over come (some of) this by creating my own functionality and/or by modifying the theme… but there may be some plug ins that do this already in a more elegant manner.

    In this case, if you want to move the meta tags to a specific location, I would move wp_head, but it’s hard to say what other tags will be moved with that function as well.

    Not really an answer, but good luck ??

    Michael

    (@mbrownwebnetinteractivecom)

    Thank-You … I am not using a Thesis theme. Good Assumption. ??

    I did move the wp_head actually .. But there was still jscript above the meta-data.

    I’m still looking for a solution to move all my meta-data up top of the <head>.

    Thanks.

Viewing 15 replies - 1 through 15 (of 25 total)
  • The topic ‘[Plugin: WordPress SEO] Missing meta description for homepage’ is closed to new replies.