HOT!Buy Ready-Made Authority WebsitesClick Here

Making Blogger Professional, Important Updates !!

Hello SoraBloggingTips Readers, If you are reading this, then we would like to appreciate your efforts for being supportive. We know its har...

How to Add Sitemap Widget In Blogspot Blogs


Sitemap is the most essential thing which every blogger should add in his/her blog. Its not just a page but helps a lot to reduce bounce rate immediately by providing direct navigation to label specific post. The sitemap widget we're going to add today shows a list of articles on the latest published order under each categories, This widget is based on ajax so it will load blazing fast and will not affect the performance of your blog.
Lets move further and see How to Add Sitemap Widget In Blogspot Blogs. You can check a live preview of the Author Box widget by clicking the button below.

Let's Start Step-1 ( Adding CSS

Before Editing we recommend you to make a backup of your template, so that anything goes wrong you still have your blog design safe.

The First thing you need to do is to login into your Blogger account and go to >> Templates >> Edit HTML and search for the ending ]]></b:skin> tag and just above it paste the following code.

/* ######## Navigation Menu Css by sorabloggingtips.com ######################### */
.mapasite {
    margin-bottom: 10px;
    background-color: #F8F8F8
}
.mapasite.active .mapa {
    display: block
}
.mapasite .mapa {
    display: none
}
.mapasite h2 {
    background-color: #EEE;
    color: #000;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 2px;
    margin-bottom: 0;
    cursor: pointer;
    font-weight: 700
}
.mapasite h2 .botao {
    font-size: 18px;
    line-height: 1.2em
}
.botao .fa-minus-circle {
    color: #f30
}
.mapapost {
    overflow: hidden;
    margin-bottom: 20px;
    height: 70px;
    background-color: #FFF
}
.mapa {
    padding: 40px
}
.map-thumb {
    background-color: #F0F0F0;
    padding: 10px;
    display: block;
    width: 65px;
    height: 50px;
    float: left
}
.map-img {
    width: 65px;
    height: 50px;
    overflow: hidden;
    border-radius: 2px
}
.map-thumb a {
    width: 100%;
    height: 100%;
    display: block;
    transition: all .3s ease-out!important;
    -webkit-transition: all .3s ease-out!important;
    -moz-transition: all .3s ease-out!important;
    -o-transition: all .3s ease-out!important
}
.map-thumb a:hover {
    -webkit-transform: scale(1.1) rotate(-1.5deg)!important;
    -moz-transform: scale(1.1) rotate(-1.5deg)!important;
    transform: scale(1.1) rotate(-1.5deg)!important;
    transition: all .3s ease-out!important;
    -webkit-transition: all .3s ease-out!important;
    -moz-transition: all .3s ease-out!important;
    -o-transition: all .3s ease-out!important
}
.mapapost .wrp-titulo {
    padding-top: 10px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3em;
    padding-left: 25px;
    padding-right: 10px;
    display: block;
    overflow: hidden;
    margin-bottom: 5px
}
.mapapost .wrp-titulo a {
    
}
.mapapost .wrp-titulo a:hover {
    color: #f30;
    text-decoration: underline
}
.map-meta {
    display: block;
    float: left;
    overflow: hidden;
    padding-left: 25px;
}
.mapasite h2 .botao {
    float: right
}

Step-2 ( Adding HTML Script

Now this is the most essential part of the tutorial and you have to do it very carefully. In the template, search for the </body> tag  and just above it paste the following HTML Coding.

 <script type='text/javascript'> 
            //<![CDATA[
var text_month = [, "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sept", "Oct", "Nov", "Dec"];
var no_image_url = "http://1.bp.blogspot.com/-eAeO-DYJDws/Vkqtj4HFBFI/AAAAAAAAB0o/Q5OLsyONXM0/s1600-r/nth.png";

           var static_page_text = $.trim($('.static_page .post-body').text());
if (static_page_text === "[sitemap]") {
    var postbody = $('.static_page .post-body');
    $.ajax({
        url: "/feeds/posts/default?alt=json-in-script",
        type: 'get',
        dataType: "jsonp",
        success: function(dataZ) {
            var blogLabels = [];
            for (var t = 0; t < dataZ.feed.category.length; t++) {
                blogLabels.push(dataZ.feed.category[t].term)
            }
            var blogLabels = blogLabels.join('/');
            postbody.html('<div class="siteLabel"></div>');
            $('.static_page .post-body .siteLabel').text(blogLabels);
            var splabel = $(".siteLabel").text().split("/");
            var splabels = "";
            for (get = 0; get < splabel.length; ++get) {
                splabels += "<span>" + splabel[get] + "</span>"
            }
            $(".siteLabel").html(splabels);
            $('.siteLabel span').each(function() {
                var mapLabel = $(this);
                var mapLabel_text = $(this).text();
                $.ajax({
                    url: "/feeds/posts/default/-/" + mapLabel_text + "?alt=json-in-script",
                    type: 'get',
                    dataType: "jsonp",
                    success: function(data) {
                        var posturl = "";
                        var htmlcode = '<div class="mapa">';
                        for (var i = 0; i < data.feed.entry.length; i++) {
                            for (var j = 0; j < data.feed.entry[i].link.length; j++) {
                                if (data.feed.entry[i].link[j].rel == "alternate") {
                                    posturl = data.feed.entry[i].link[j].href;
                                    break
                                }
                            }
                            var posttitle = data.feed.entry[i].title.$t;
                            var author = data.feed.entry[i].author[0].name.$t;
                            var get_date = data.feed.entry[i].published.$t,
                                year = get_date.substring(0, 4),
                                month = get_date.substring(5, 7),
                                day = get_date.substring(8, 10),
                                date = text_month[parseInt(month, 10)] + ' ' + day + ', ' + year;
                            var tag = data.feed.entry[i].category[0].term;
                            var content = data.feed.entry[i].content.$t;
                            var $content = $('<div>').html(content);
                            var src2 = data.feed.entry[i].media$thumbnail.url;
                            htmlcode += '<div class="mapapost"><div class="map-thumb"><div class="map-img"><a href="' + posturl + '" style="background:url(' + src2 + ') no-repeat center center;background-size: cover"/></div></div><h3 class="wrp-titulo"><a href="' + posturl + '">' + posttitle + '</a></h3><div class="map-meta"><span class="p-author">' + author + '</span><span class="p-date">' + date + '</span></div></div>'
                        }
                        htmlcode += '</div>';
                        mapLabel.replaceWith('<div class="mapasite"><h2>' + mapLabel_text + '<span class="botao"><i class="fa fa-plus-circle"></i></span></h2>' + htmlcode + '</div>');
                        $(document).on('click', '.mapasite h2', function() {
                            $(this).parent('.mapasite').addClass('active');
                            $(this).find('.botao .fa').removeClass('fa-plus-circle').addClass('fa-minus-circle');
                        });
                        $(document).on('click', '.mapasite.active h2', function() {
                            $(this).parent('.mapasite').removeClass('active');
                            $(this).find('.botao .fa').addClass('fa-plus-circle').removeClass('fa-minus-circle');
                        });
                    }
                });
            });
        }
    });
}
            //]]>
</script>

Now Save your template and go to pages to add sitemap.

Note :- the widget works on jquery so you have to install jquery plugin if you haven't installed it yet..

Step-3 ( Adding Sitemap In Pages ) - Most Important !!

Now this is the most essential part of the tutorial and you have to do it very carefully.Go to your blogger dashboard > Pages > Add New Page.
On the new page content after adding the page title and hiding the comments using options, add the following code in the page content area.
[sitemap]
For better understanding check the highlighted area in the below image.




Now click publish button and check the published page to see the newly added sitemap widget. ;)

Conclusion

Congrats !! You have made it. now you have learned that How to Add Sitemap Widget In Blogspot Blogs. Visit your blog and check the awesome widget live in action, hope you liked this tutorial, if you enjoyed then please share it with your friends, we are working hard to develop more such awesome widgets please stay tuned with Us.
How to Add Sitemap Widget In Blogspot Blogs How to Add Sitemap Widget In Blogspot Blogs Reviewed by SoraBloggingTips on January 22, 2017 Rating: 5

349 comments:

  1. Did not work for my blog and it is one of your templates. http://www.blastedgist.ml/p/sitemap.html

    ReplyDelete
    Replies
    1. We can't see proper codes in your blog.

      Delete
    2. http://marsyamochi13.blogspot.co.id/p/site-map.html not working :"(

      Delete
    3. the page you were trying to view does not exist

      Delete
    4. Thanks sora blog my blog working
      check here

      Delete
  2. Is not working...

    ReplyDelete
    Replies
    1. What kind of problem are you facing.

      Delete
    2. Sir, how to install the jquery plugin? please provide the code. Thanks a lot

      Delete
    3. It's only important if your blog doesn't have one.
      http://www.sorabloggingtips.com/2017/07/how-to-add-jquery-in-blogger-and-blogspot-blogs.html

      Delete
  3. how to install jquery plugin for sitemap?

    ReplyDelete
    Replies
    1. Very Soon we will publish a tutorial about it, stay tuned.

      Delete
  4. what does "for unlimited domains" Mean?
    I installed your theme on my blog Http://humptechtips.com please tell me

    ReplyDelete
    Replies
    1. You can Use it for as many domains as you can.

      Delete
  5. SITEMAP PLEASE SORA ...http://ancestral70.blogspot.pt/

    ReplyDelete
    Replies
    1. Follow the above tutorial, to install sitemap.

      Delete
  6. it is showing the [sitemap] when i view the page nothing more and nothing less ??

    ReplyDelete
  7. Hi sir, I followed your instruction but the sitemap is not working on my website https://content2seo.blogspot.in/ please help

    ReplyDelete
  8. not working you see : http://blog.chutuananh.com/p/bptoc-backgroundffaaa4color666margin0.html

    ReplyDelete
  9. not working!!!

    http://4techblogger.blogspot.com/p/sitemap.html

    ReplyDelete
  10. It's works.....thank you! [terima kasih! (in Bahasa Indonesia)]

    www.chakrasinatriya.blogspot.com

    ReplyDelete
  11. please help... didnt work for me.

    https://gkmade-easy.blogspot.com/p/sitemap.html

    ReplyDelete
    Replies
    1. https://military-choice.blogspot.in/p/sitemap_57.html

      my jquery code - https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js

      Delete
    2. We have updated the code please replace the code with older one.

      Delete
    3. what is the older code

      Delete
  12. help me. didnt work :(

    ReplyDelete
  13. AnonymousJune 01, 2017

    can i download this template ps

    ReplyDelete
  14. This tutorial I have applied to my blog blogonDOTid, and works well, thanks Sora

    ReplyDelete
  15. didnt work http://www.jamzok.com/p/sitemap.html

    ReplyDelete
    Replies
    1. You have to publish the codes in content tab instead of HTML.

      Delete
  16. AnonymousJune 25, 2017

    Hey! Thanks for the tutorial! It works fine with my blog with flora theme
    Check my blog!
    Thank again!!

    ReplyDelete
  17. not working please bro please update this it will only work sora tamplet other not

    link : http://www.bdtv.ml/p/sitemap.html not work

    ReplyDelete
    Replies
    1. You have to publish the codes in content tab instead of HTML.

      Delete
  18. Blog: https://lowtech-pt.blogspot.pt - The "* ######## Navigation Menu Css by sorabloggingtips.com ######################### */ ..." code apear on the head of the blog :(

    ReplyDelete
    Replies
    1. Copy the css carefully, you may have missed anything.

      Delete
  19. i unable to find ]]> code on my html. please help to make site map

    ReplyDelete
  20. thank you a lot its working

    ReplyDelete
  21. AnonymousJuly 16, 2017

    would you please help me out with this

    http://pakistanifox.blogspot.com/p/blog-page.html

    not working for me, no answer brother

    ReplyDelete
    Replies
    1. You have to publish the codes in content tab instead of HTML.

      Delete
    2. AnonymousJuly 18, 2017

      I did both ways contact tab also not working for me dont know why...

      Delete
    3. Your Url is not available.

      Delete
    4. AnonymousJuly 22, 2017

      sorry a lot so now i delete it

      Delete
  22. Works great, thanks!
    Here's my blog sitemap url >> http://playnoroid.blogspot.com/p/sitemap.html

    ReplyDelete
  23. AnonymousJuly 17, 2017

    is there any limit of posts under this sitemap

    ReplyDelete
    Replies
    1. No it will show every single post based on categories.

      Delete
  24. s there any limit of labels under this sitemap
    how costimaze this sitemap to get it from specific labels only
    my url is http://www.archiworldz.ml/p/sitemap_28.html

    ReplyDelete
    Replies
    1. Sorry but the purpose of site map is to show posts from entire blog.

      Delete
  25. Awesome, works fine here. Would it be possible to include Pages too?

    ReplyDelete
  26. Thanks, It's Working...

    ReplyDelete
  27. thanks. it works so beautiful

    ReplyDelete
  28. http://pusatbacaku.blogspot.co.id/p/sitemap_7.html

    not working bro...

    ReplyDelete
  29. Not Working https://www.earlycts.com/p/sitemap.html

    ReplyDelete
  30. not working for site www.ezonetoday.com
    it shows as plain text only .. I wanted to buy paid version ,but don't have a paypal a/c. Any other alternative payment method

    ReplyDelete
  31. Sir Which Size Of Image WIll Look Fit In This Theme. I Upload In Post Many Photos With Difffrent Sizes But No Any Are Fit.. So Please SUggest Me And This Is My Blog URL: www.OnlineFarazAcademy.com

    ReplyDelete
  32. Not Working
    http://www.jetadoloaded.tk/p/sitemap.html

    ReplyDelete
  33. already instal jquery 1.11.0 but still not working, please help.
    Thanks.
    http://wajoo.blogspot.co.id/p/daftar-isi.html

    ReplyDelete
  34. why not working on seohub?
    http://wajoo.blogspot.co.id/p/daftar-isi.html

    ReplyDelete
  35. Thanks for this!

    gizmoandroid.blogspot.in

    ReplyDelete
  36. Thanks for your tutorial now my blog have been looks good with your sitemap :)

    ReplyDelete
  37. Added the sitemap to my blog @ http://www.civdigitech.com/ and it worked fine.

    ReplyDelete
  38. facing problem in your coupon template, related posts are not showing. in site hostkro.com

    ReplyDelete
    Replies
    1. Your post must have atleast one label.

      Delete
    2. i ill pay u 10$ can u give me the premium theme and customize my blog ?

      Delete
  39. It is not working on my site
    http://nishu-creation.blogspot.in/p/sitemap.html

    ReplyDelete
  40. i tried setting up the sitemap page but this is what i got http://www.gatgist.com/p/sitemap.html

    ReplyDelete
    Replies
    1. Some of your post's doesn't carry label also you haven't activated the recent and featured widgets.

      Delete
  41. My sitemap doesn't work at all.
    It show Label but can not click one it.
    https://luckdeelaundry.blogspot.com/p/sitemap_78.html

    ReplyDelete
  42. It's not working on basil, so navbar menu disappear and not scrolling.
    http://indobiji.blogspot.co.id/p/sitemap.html

    ReplyDelete
  43. Hello,
    Please how do I input button in my posts e.g download button.

    Check here to know what I'm saying.

    ReplyDelete
    Replies
    1. We include button shortcodes in our templates.

      Delete
  44. its working thanks.
    www.alakbarcenter.com

    ReplyDelete
  45. its working?

    ??????
    http://www.caminhandonaluz.com/p/sitemap.html

    ReplyDelete
  46. Please help sora, its not working.. I'm not sure if its on jquerry...
    this is the current default jquery code
    ajax/libs/jquery/1.10.2/jquery.min.js

    and here is my site http://asiatraveller87.blogspot.com/p/sitemap.html

    ReplyDelete
  47. can you help me..
    http://www.ngrakit.com/p/sitemap.html

    ReplyDelete
    Replies
    1. It's working ut there are some bugs because you haven't activated the recent post, latest comments, and label featured widget.

      Delete
  48. Pls how can I remove the page on the sidebar www.crashsolution.net. The sitemap works fine but pages is showing on the side bar

    ReplyDelete
  49. Please Check is mines working correctly https://movilologia.blogspot.com/p/sitemap.html

    ReplyDelete
  50. can I change the Color of in Title Header1 ?

    http://www.jasaplafon.com/

    change Color of this text
    " JASA PASANG PLAFON AMANAH "

    ReplyDelete
    Replies
    1. Search for this css in your template,
      #header h1
      then change the value of color.

      Delete
  51. thank you sir,
    i try it ok

    ReplyDelete
  52. sir i did every thing same mentioned in your tutorial to add a site map i installed jquery in my html before closing head tag this line
    script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" script
    but still not getting the result please check my blog
    http://crankyview.in/

    ReplyDelete
  53. Error in google Webmaster - Your Sitemap appears to be an HTML page. Please use a supported sitemap format instead. I am trying to index my pages . Please Help

    ReplyDelete
    Replies
    1. This is only a table of content page widget, for webmaster tools you have to submit XML sitemap.

      Delete
  54. hello sir/mam,
    i have done sitemap but face a problem with search console please help about this.

    Errors
    Sitemap is HTML
    Your Sitemap appears to be an HTML page. Please use a supported sitemap format instead.
    1 Tag: html
    2 Nov 12, 2017

    https://furniture-works.blogspot.in/p/sitemap.html

    ReplyDelete
    Replies
    1. This is only a table of content page widget, for webmaster tools you have to submit XML sitemap.

      Delete
  55. http://www.simsekblog.com/p/site-map.html

    I have problem :(

    ReplyDelete
  56. This comment has been removed by the author.

    ReplyDelete
  57. Hola, he comprado la plantilla Sofhie y no funciona bien el site map
    http://blog.colchonesymas.es/p/site-map.html
    Gracias

    ReplyDelete
    Replies
    1. It's working absolutely fine.

      Delete
    2. Hi Sora, sorry bat donts working well
      http://prntscr.com/hn0rte
      I have a label that does not work
      I bought the template,
      How can I contact you to solve a couple of questions?

      Delete
    3. Use this link to contact the creator.
      http://www.way2themes.com/p/contact-us.html

      Delete
  58. How to add space betwen author and date sir?
    https://1.bp.blogspot.com/-wxJA5dHBUo8/WitioAOAkKI/AAAAAAAACTU/o6lzOYudKT01ShBwd8v5ePNB4y9kJtmZwCLcBGAs/s1600/Untitled.png

    ReplyDelete
    Replies
    1. Search for this code and increase the value.
      .p-date {
      margin-left: 10px;
      }

      Delete
  59. Yuhu... Thx brother.. I have updated the sitemap...

    Thx a lot...
    this is my blog
    http://natnusantara.blogspot.co.id/

    ReplyDelete
  60. not working properly...
    http://www.nationaltimes.in/p/sitemap.html

    ReplyDelete
    Replies
    1. Neither you have added css nor you have added the javascript.

      Delete
  61. Good day, Sora! I need to fix my sitemap which shows some labels are not properly put in sitemap. Please check this site: https://sirm-academy.blogspot.com/p/site.html

    ReplyDelete
    Replies
    1. Its because some of your posts doesn't have image and some of then aren't hosted on blogger.

      Delete
  62. Hi, Can help me to resolve the sitemap issue. For my blogger it is not working. I followed your post but not working. I am trying from last 4 days. I am using Treasury Blogger Template and Url: www.pharmariim.com. And one more issue is Latest post are not align properly like side by side. If you see the blog you fill find the issue in Latest post. And one more thing is i want replace the current social share icons in every post with elegant share buttons with whats app. How to replace also suggest me. Awaiting for your help.

    ReplyDelete
    Replies
    1. You haven't added the css or javascript for sitemap.

      Delete
  63. not working, please check
    https://information657.blogspot.in/

    ReplyDelete
  64. help me, sitemap not working!

    ReplyDelete
  65. Did not work for my blog and it is one of your templates. https://semurel.blogspot.com/p/sitemap.html

    ReplyDelete
    Replies
    1. Neither you have added the css nor js, how will it work?

      Delete
  66. Did not work for my blog and it is one of your templates.

    Message: "Invalid variable declaration in page skin: Variable is used but not defined. Input: primary.color"

    ReplyDelete
    Replies
    1. We have updated the code please check again.

      Delete
  67. hello
    Did not work for my blog and it is one of your templates.
    http://www.usefulweightlossadvice.ml/
    thanks for helping

    ReplyDelete
  68. nice artikel, thanks for share..

    ReplyDelete
  69. Hi..
    it's working fine, thanks!
    http://www.planespotting.cf/p/sitemap.html

    ReplyDelete
  70. thank you very much it's works so good...
    https://duatilu98.blogspot.co.id/p/arsip.html

    ReplyDelete
  71. thanx! it worked with new theme

    ReplyDelete
  72. Hello, please help me because it is not working on my blog. I'm using Shouters template. My blog is www.asymmetricalife.net/p/sitemap

    Thank you

    ReplyDelete
  73. Working Fine Thank You... :)

    ReplyDelete
  74. Worked For Me Thanks Alot Bro That Was Easy With Your Simple Tutorial

    ReplyDelete
  75. worked for me thanks alot crimmyb.blogspot.com

    ReplyDelete
  76. the sitemap only shows me a tag of several that I have on my blog: c

    ReplyDelete
  77. it's working.thank you so much.

    ReplyDelete
  78. Thanks sir, it is working with charm.
    When i submit sitemap to webmaster it this shows error.
    https://4.bp.blogspot.com/-ktq7iVDsUHM/Wt7ruBKFafI/AAAAAAAAAKQ/dKVeLwGzlUMwHTUCbifH_8CvI4BDBZ90QCLcBGAs/s1600/sitemap.PNG

    blog url.
    https://prog-hub.blogspot.com

    ReplyDelete
    Replies
    1. This is not that sitemap which you submit on webmaster tools. Follow this tutorial for that.
      https://gooyaabitemplates.com/submit-sitemap-to-google-webmaster-tools-in-blogger/

      Delete
  79. thanks its work https://www.assamjobclub.info

    ReplyDelete
  80. Not working on newly optima theme.
    Please check:-https://smartechnotes.blogspot.in/p/sitemap.html?m=1

    ReplyDelete
  81. thanks its working for me.my website www.tech2zap.in

    ReplyDelete
  82. Thanks lot, its working properly.

    ReplyDelete
  83. Buen trabajo, pero algunos articulos no me quedaron en el sitemap, http://ciclismouy.blogspot.com/p/sitemap.html

    ReplyDelete
  84. it's working!
    for those who hade a problem, your blog should be public to see the changes!!

    ReplyDelete
  85. http://www.zerospanish.com/p/blog-page_2.html

    whats the problem here ?

    ReplyDelete
  86. Thank you Its working http://www.thefunny.in/p/sitemap.html

    ReplyDelete
  87. I have premium version and followed all above steps to create a sitemap but all in junk. Kindly check my URL https://www.razidawakhana.com/p/sitemap.html

    ReplyDelete
  88. Thanks :) SoraBloggingTips Website: http://www.the-indians.ooo/p/sitemap.html

    ReplyDelete
  89. Also, another question, is there a way to organize all my Blog posts and have it shown under a custom menu called "Blog". I'm using CV-Blogger template.

    ReplyDelete
    Replies
    1. Sorry we can't provide support on additional customization rather than solving issues or bugs, if you want to customize your template then buy our blog customization service.

      Delete
  90. I bought Premium Version of SoraBook Blogger Template but I never get any support from the email:soratemplate@gmail.com.When asked that I could not not edit html code and save the template, they replied me that you can do change the html code. I hope, here I get the support.

    ReplyDelete
  91. Nice, its working. Thanks

    ReplyDelete
  92. Done Thank You

    ReplyDelete
  93. Thank you! It works for me ;)

    ReplyDelete
  94. I bought the version
    HI.. NO WORK
    https://www.tour-moscu.tours/p/mapa-del-sitio.html

    ReplyDelete
  95. not working sir
    please make more easy. and how to install jquery plugin ? and where install it ? its working in blogspot ?

    ReplyDelete
    Replies
    1. This is the most easiest method we have found till date.

      Delete
  96. thanks working for my site https://www.thetechnologyg.com/

    ReplyDelete
  97. Hey guys its working check my blog
    https://letsup-news.blogspot.com/p/sitemap.html?m=1

    ReplyDelete
  98. Very Very thanks this code 100% working parfectly- Proof https://www.surendrastudiotech.com/p/sitemap.html

    ReplyDelete
  99. Thanks
    .
    Cek my blog > https://www.bayudaily.com/

    ReplyDelete
  100. Thank you very much sora blogging tips. It works fine

    ReplyDelete
  101. It's really working on my site
    https://www.globaljobs.tk/p/site.html
    Thanks sorabloggingtips

    ReplyDelete
  102. HOLA tengo unos errore que nologre corigirlos me podrias ayudarme porfavo saludos
    https://mecatronix96.blogspot.com/

    ReplyDelete
  103. Hey there,
    I'm not sure my sitemap works, can I get some help please?

    ReplyDelete
    Replies
    1. Please follow tutorial in detail and you will find very easy

      Delete
    2. already mentioned each and everything in above tutorial

      Delete
  104. Some labels are shown and some are not please check and solve this issue please
    https://uwatchfreetv29.blogspot.com/p/sitemap.html

    ReplyDelete
  105. hi, I think sitemap is not working properly for my site. It maps half of my post. Plz do help me.

    https://www.quitpit.com/p/sitemap.html

    ReplyDelete
  106. Hey its awesome sitemap, but there is a problem regarding sitemap url. It show underscore ( _ ) in sitemap page url. It's not seo friendly url. How to replace underscore ( _ ) with (-) hyphen mark.

    ReplyDelete
  107. did not work my blog
    https://ayan-abbasi.blogspot.com/p/sitemap.html

    ReplyDelete
  108. Thanks, a lot! working fine.
    https://www.mypridenepal.com/p/sitemap.html

    ReplyDelete
  109. thanks you , it work!..... (:
    https://arbahiads.blogspot.com/p/sitemap.html

    ReplyDelete
  110. Sitemap works perfect https://madumate2.blogspot.com/p/sitemap.html Thanks

    ReplyDelete
  111. Works perfect. Thank you so much.

    ReplyDelete

Note : -We have stopped giving support to free version users, please read this article Making Blogger Professional, Important Updates !!. If You Are Facing Any Problem While Setting Up The Free Theme, Then We Recommend You To Read Our FAQ(Frequently Asked Question) Page.