noindex on default events page – how to remove?

Home Forums Calendar Products Events Calendar PRO noindex on default events page – how to remove?

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1101219
    Kenneth
    Participant

    This post is in follow-up to the following topic that had been closed: https://theeventscalendar.com/support/forums/topic/robots-noindex-tag-on-default-events-page/#post-1041422

    My site’s search rank position has decreased markedly due to the default “noindex”. I tried to use a code snippet that had been posted in another thread in this forum, but the snippet crashed my site, which recovered after I removed the code.

    Has there been progress on making “noindex” an optional selection? If not, then how can I disable the “noindex” default?

    Thank you.

    #1101328
    George
    Participant

    Hey Kenneth,

    Thanks for reaching out.

    There is unfortunately no option at this time. 🙁

    In regards to removing the noindex, you can do this by adding a snippet like this to your theme’s functions.php file:


    if ( class_exists( 'Tribe__Events__Main' ) ) {
    add_action( 'wp', 'remove_tribe_noindex', 999 );

    function remove_tribe_noindex() {
    remove_action( 'wp', array( 'Tribe__Events__Main', 'issue_noindex' ) );
    }
    }


    I’m curious here, as well, why you think your search engine rankings have been affected by the events noindex? There are other factors on your site that might be far more likely to be the culprit, as the main /events/ feed page can actually hinder proper indexing of the site’s individual events.

    Cheers!
    George

    #1101724
    Kenneth
    Participant

    This reply is private.

    #1102252
    George
    Participant

    Glad to hear about some progress here, Ken.

    This comment stood out to me as possible relevant:

    to cause the calendar to appear on the “home page” for the site.

    Our plugins unfortunately offer basically no support for the calendar being the actual site home page. We’re working on this, but at this time it’s hard to successfully pull off such a configuration of things, and the lack of proper configuration within our plugin for being used as a home page could indeed have been a factor with your site’s search engine rankings.

    Just sharing some thoughts—let me know if you have any further thoughts on this of your own! Otherwise I can go ahead and close up this ticket.

    Thank you,
    George

    #1108289
    Support Droid
    Keymaster

    This topic has not been active for quite some time and will now be closed.

    If you still need assistance please simply open a new topic (linking to this one if necessary)
    and one of the team will be only too happy to help.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘noindex on default events page – how to remove?’ is closed to new replies.