• Resolved ltrihan

    (@ltrihan)


    Hello,

    On the site?https://www.frequence.tv/?the wrong choice was made to index a waiting page and continue production in parallel, online, but by deindexing all the pages (via noindex on the template header.php only) except the waiting page, declared as home page in WordPress in Settings > Reading.

    Once production was complete, noindex (the only existing one) on the template header.php were removed, the real homepage was redefined via Settings > Reading. Despite everything, only the home page appears indexed, even today.

    I think the problem comes from here?https://yoast.com/innovations/indexables/?(after deactivating Yoast, my pages no longer appeared in noindex). It is clearly stated that indexing information is stored in the database, to subsequently be able to deliver the indexing information more quickly.

    Except that even by following the advice to reset the indexing information: https://yoast.com/help/how-to-reset-yoast-indexables/, the pages are still in noindex.

    Could you please help us find out where the problem could be coming from?

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Support Maybellyne

    (@maybellyne)

    Hello @ltrihan,

    Thanks for reaching out about your site. At the moment, the Yoast SEO plugin is not active on your site. Can you activate it so I can troubleshoot what you reported?

    As a sidenote, you mght want to check the CSS file of your current theme as the styling of your webpages is distorted/warped. See screenshot.

    • This reply was modified 1 year, 4 months ago by Maybellyne.
    Thread Starter ltrihan

    (@ltrihan)

    Hello @maybellyne ,

    Thanks for your reply and your sidenote.
    Is it ok for you now ?

    Plugin Support Maybellyne

    (@maybellyne)

    Yes. It looks better now – https://pasteboard.co/qlE2wrrO8JeK.png

    I have similar issue, plus failing URLs (desktop) and no indexed videos.

    Plugin Support Maybellyne

    (@maybellyne)

    @zhannaseravokaya We are sorry you’re having the same issue. Please open a new request. That way, it’s easier to track issues and provide assistance. Thanks!

    Thread Starter ltrihan

    (@ltrihan)

    At the moment, the Yoast SEO plugin is not active on your site. Can you activate it so I can troubleshoot what you reported?

    @maybellyne so can you access to informations now ? I’m still having the issue of noindex on all pages except homepage.

    One ultimate solution could be to delete Yoast and erase all about informations related to Yoast in my database, but there were a few hours of work to optimize certain pages. Without knowing what option or configuration is causing the problem, I cannot make a backup.

    I would really like to know where the problem comes from and how to fix it since I may have the same problem on another site ??

    • This reply was modified 1 year, 4 months ago by ltrihan.
    Thread Starter ltrihan

    (@ltrihan)

    Issue fixed !

    In fact, during production, I added a noindex in my header.php which I removed when it was finally uploaded.

    The problem is that Yoast took over the noindex that I had placed in the header.php, so I had to add this code in the functions.php

    // Remove meta tag for pages except waiting page which is homepage
    function yoast_seo_robots_remove_index( $robots ) {
    	if ( !is_front_page() ) {
    	  return false;
    	} else {
    	  return $robots;
    	}
    }
    add_filter( 'wpseo_robots', 'yoast_seo_robots_remove_index' );

    Once deleted, the pages are indexed again.
    Sorry for the inconvenience caused.

    Have a good day !

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Persistent noindex’ is closed to new replies.