• Resolved webdevpr

    (@webdevpr)


    How can I disable this auto-generated sitemap? OR maybe how can I modify them?

    /at_biz_dir-sitemap.xml
    /at_biz_dir-location-sitemap.xml
    /at_biz_dir-category-sitemap.xml
    /at_biz_dir-tags-sitemap.xml

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Mahfuzul Alam

    (@mahfuz87)

    Hello

    Thank you for reaching out.

    You can remove this auto generated sitemap URLs by using the following hooks –

    add_filter( 'wp_sitemaps_post_types', function( $post_types ) {
        unset( $post_types['at_biz_dir'] );
        return $post_types;
    } );
    
    add_filter( 'wp_sitemaps_taxonomies', function( $taxonomies ) {
        unset( $taxonomies['atbdp_listing_types'] );
        unset( $taxonomies['at_biz_dir-category'] );
        unset( $taxonomies['at_biz_dir-location'] );
        unset( $taxonomies['at_biz_dir-tags'] );
        return $taxonomies;
    } );

    If you can describe what type of modification you want to implement here, I will try to help you with this.

    Kind Regards

    Thread Starter webdevpr

    (@webdevpr)

    Hello and thank you for helping me out.

    I got this errors below from Google Search Console, and I was thinking about to fix or disable. Note: The content in there isn’t important for my SEO.

    This is not a valid URL. Please correct it and resubmit.
    Examples:
    
    URL:          /behavioral-hospitals/
    Line 11       Parent tag:        url
                  Tag:               loc
    
    URL:          /behavioral-hospital/
    Line 16       Parent tag:        url
                  Tag:               loc
    • This reply was modified 2 years, 5 months ago by webdevpr.
    • This reply was modified 2 years, 5 months ago by webdevpr.

    Hello webdevpr !

    Hope you are doing well.

    We need to inspect the issue at your site. Therefore, kindly reach us through our technical support channel. One of you technical support members will resolve the issue right away at your site.

    You will find the support channel at the directorist official site.

    Regards.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Disable sitemap or edit’ is closed to new replies.