Related Posts Widget with Thumbnails and Summary for Blogger

There are several tutorials quite old in which I have shown different methods for displaying related posts in Blogger [1] [2] but in this tutorial, you will learn how to implement a really awesome Related Posts widget with Thumbnails and Posts Snippets that will appear in the footer of all your blog posts. If you want to get an idea of how it looks like, please visit this demo blog.

Now let's see how to add the related posts widget with thumbnails and summaries in a Blogger template:

Adding Related Posts Widget with Summaries to Blogger
related posts widget with thumbnails and summaries

Step 1. From your Blogger Dashboard, go to Template and click on Edit HTML


Step 2. Click anywhere inside the code area and then press CTRL + F to open the Blogger search box


Step 3. Type or paste this tag inside the search box and hit enter to find it:
</head>
After you found it, paste this script just above it:
<script type='text/javascript'>
//<![CDATA[
var relatedTitles = new Array();
var relatedUrls = new Array();
var relatedpSummary = new Array();
var relatedThumb = new Array();
var relatedTitlesNum = 0;
var relatedPostsNum = 4; // number of entries to be shown
var relatedmaxnum = 75; // the number of characters of summary
var relatednoimage = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiZTZeNz_ziX2jfTnXOGaSM0eVZBxo8h8fJX3or8U2rblwQBp00zN79EVNVFT6Cv8_ezz2DHHdVp6kTCT3p0TeP1bRa1nUKTqrM0CssOXBjRLQ_35JSEfoehwEME8OgVxN9Utf8C1y7JLye/s1600/no_image.jpg"; // default picture for entries with no image
//]]>
</script>
<script src="http://makingdifferent.github.io/blogger-widgets/related-posts-with-thumbs-and-summaries.js" />
Note:  
    - To change the number of posts that are being displayed, modify the value in red (4)
    - To change the number of characters to be shown in posts summary, modify the value in green (75)
    - To change the default pic for posts with no images, add your URL instead of the one marked in blue

      Now that we added the script, we will need to add the style. Paste the following code above the same </head> tag:
      <style>
      .relatedsumposts {
          float: left;
          padding: 0px 10px;
          overflow: hidden;
          text-align: center;
        /* width and height of the related posts area */
          width: 120px;
          height: 200px;
          border-right: 1px solid #E5E5E5;
          display: inline-block;
      }

      .relatedsumposts:hover {
          background-color: #F7F7F7;
      }

      .relatedsumposts img:hover {
          -webkit-transform: rotate(360deg);
          -moz-transform: rotate(360deg);
          -o-transform: rotate(360deg);
      }

      .relatedsumposts a {
        /* link properties */
          color: #linkcolor;
          display: inline;
          font-size: 10px;
          line-height: 1;
      }

      .relatedsumposts img {
        /* thumbnail properties */
          margin-top: 2px;
          height: 82px;
          padding: 5px;
          width: 82px;
          border: 1px solid #fff;
          -webkit-border-radius: 100px;
          -moz-border-radius: 100px;
          border-radius: 100px;

          -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
          -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
          box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
          -webkit-transition-duration: 0.8s;
          -moz-transition-duration: 0.8s;
          -o-transition-duration: 0.8s;
          transition-duration: 0.8s;
          -webkit-transition-property: -webkit-transform;
          -moz-transition-property: -moz-transform;
          -o-transition-property: -o-transform;
          transition-property: transform;
          overflow: hidden;
      }

      .relatedsumposts h6 {
        /* title properties */
          display: table-cell;
          height: 3em;
          margin: 5px 0 0;
          overflow: hidden;
          padding-bottom: 2px;
          vertical-align: middle;
          width: 130px;
      }

      .relatedsumposts p {
        /* summary properties */
          border-top: 1px solid #E5E5E5;
          border-bottom: 1px solid #E5E5E5;
          color: #summarycolor;
          font-size: 10px;
          height: 4em;
          line-height: 1;
          margin: 5px 0 0;
          overflow: hidden;
          padding: 5px 0 15px 0;
          text-align: left;
      }

      #relatedpostssum {
          background: #F3F3F3;
          height: 200px; /* related posts container */
          padding: 5px;
          width: 100%;
      }

      .relatedpoststitle {
          font-size: 19px;
          font-weight: bold;
          border-top: 3px solid #FB8227;
          color: #777;
          display: inline-block;
          padding: 5px 10px;
          width: 190px;
          float: left;
          margin: 0px -200px 0px 20px;
          transform: rotate(90deg);
          transform-origin: left top 0;
          -ms-transform: rotate(90deg);
          -ms-transform-origin:left top 0;
          -webkit-transform: rotate(90deg);
          -webkit-transform-origin:left top 0; 
         font-family: Gill Sans / Gill Sans MT, sans-serif;
      }
      </style>
      Note:  
        - Modify the values in red to adjust the width (120) and height (210) of the widget area
        - Replace #linkcolor with the hex value of your color to change the color of post titles
        - If you want to change the size of thumbnails, modify the values marked in violet (82)
        - To determine the border roundness, modify the values in orange (100)
        - To change the color of the post snippet, change #summarycolor with color hex value
        - In case you add more that 5 related posts, change the container height 200px to 400px

        2nd Note: If you have a dark background, you may want to add this style instead (see the screenshot):

        related posts widget with thumbnails and summaries
         <style>
        .relatedsumposts {
            float: left;
            padding: 0px 10px;
            overflow: hidden;
            text-align: center;
          /* width and height of the related posts area */
            width: 120px;
            height: 200px;
            border-right: 1px solid #0A0A0A;
            display: inline-block;
        }

        .relatedsumposts:hover {
            background-color: #0A0A0A;
        }

        .relatedsumposts img:hover {
            -webkit-transform: rotate(360deg);
            -moz-transform: rotate(360deg);
            -o-transform: rotate(360deg);
        }

        .relatedsumposts a {
          /* link properties */
            color: #linkcolor;
            display: inline;
            font-size: 10px;
            line-height: 1;
        }

        .relatedsumposts img {
          /* thumbnail properties */
            margin-top: 2px;
            height: 82px;
            padding: 5px;
            width: 82px;
            border: 1px solid #000;
        background:#282828;
            -webkit-border-radius: 100px;
            -moz-border-radius: 100px;
            border-radius: 100px;

            -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
            -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
            box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
            -webkit-transition-duration: 0.8s;
            -moz-transition-duration: 0.8s;
            -o-transition-duration: 0.8s;
            transition-duration: 0.8s;
            -webkit-transition-property: -webkit-transform;
            -moz-transition-property: -moz-transform;
            -o-transition-property: -o-transform;
            transition-property: transform;
            overflow: hidden;
        }

        .relatedsumposts h6 {
          /* title properties */
            display: table-cell;
            height: 3em;
            margin: 5px 0 0;
            overflow: hidden;
            padding-bottom: 2px;
            vertical-align: middle;
            width: 130px;
        }

        .relatedsumposts p {
          /* summary properties */
            border-top: 1px solid #0A0A0A;
            border-bottom: 1px solid #0A0A0A;
            color: #summarycolor;
            font-size: 10px;
            height: 4em;
            line-height: 1;
            margin: 5px 0 0;
            overflow: hidden;
            padding: 5px 0 15px 0;
            text-align: left;
        }

        #relatedpostssum {
            background: #121212;
            height: 200px; /* related posts container */
            padding: 5px;
            width: 100%;
        }

        .relatedpoststitle {
            font-size: 19px;
            font-weight: bold;
            border-top: 3px solid #FB8227;
            color: #ccc;
            display: inline-block;
            padding: 5px 10px;
            width: 190px;
            float: left;
            margin: 0px -200px 0px 20px;
            transform: rotate(90deg);
            transform-origin: left top 0;
            -ms-transform: rotate(90deg);
            -ms-transform-origin:left top 0;
            -webkit-transform: rotate(90deg);
            -webkit-transform-origin:left top 0;
           font-family: Gill Sans / Gill Sans MT, sans-serif;
        }
        </style>
        Step 4. Next, search (CTRL + F) for the following code snippet:
        <a expr:href='data:label.url' rel='tag'><data:label.name/></a><b:if cond='data:label.isLast != &quot;true&quot;'>,</b:if>
        And after you found it, add this script just below it:
        <b:if cond='data:blog.pageType == &quot;item&quot;'>
            <script expr:src='&quot;/feeds/posts/default/-/&quot; + data:label.name + &quot;?alt=json-in-script&amp;callback=readpostlabels&amp;max-results=50&quot;' type='text/javascript'/>
          </b:if>
        The entire fragment should look like this:
                  <b:loop values='data:post.labels' var='label'>
                    <a expr:href='data:label.url' rel='tag'><data:label.name/></a><b:if cond='data:label.isLast != &quot;true&quot;'>,</b:if>
        <b:if cond='data:blog.pageType == &quot;item&quot;'>
            <script expr:src='&quot;/feeds/posts/default/-/&quot; + data:label.name + &quot;?alt=json-in-script&amp;callback=readpostlabels&amp;max-results=50&quot;' type='text/javascript'/>
          </b:if>

                  </b:loop>
        Step 5. Finally, find this fragment of code:
        </b:includable>
        <b:includable id='postQuickEdit' var='post'>
        Note: search only the line in red and after you find it, you should see the </b:includable> tag above it

        ! Click on the sideways arrow to expand the code, then scroll down until you reach to the highlighted line !

        Just ABOVE the </b:includable> tag, add the following code:
        <b:if cond='data:blog.pageType == &quot;item&quot;'>
          <div class='post-footer-line post-footer-line-4'>
           <div class='relatedpoststitle'>RELATED POSTS</div>
        <div id='relatedpostssum'>
              <script type='text/javascript'>showrelated();</script>
            </div>
            <div style='clear:both;'/>
          </div>
        </b:if>
        Screenshot

        Step 6. Click on the Save Template button to save the changes and you're done!

        Note: in case you see the 'undefined' message, make sure that you have added the appropriate labels to your posts - which can be found in at least one more post, otherwise the script may not be able to find any related posts for that entry.

        Comments/disqusion
        105 comments

        1. says:

          I will put in my blog :D thannks

        2. says:

          okay so i love this and love your tutorials, but when i followed the steps and saved, it installed, but says "undefined" for the title and post summaries. and there was no pictures. i re-read everything and tried again but it still didn't work. does anyone else get this? or is it just me? help!

        3. says:

          Dear Audrey,

          This could happen because the code for posts labels have been removed, so I recommend to add it back from here (step 3) below this code:
          <div class='post-footer-line post-footer-line-2'><span class='post-labels'>
          And for hiding labels, add this rule just above ]]></b:skin>
          .post-labels { display: none; }

          Now try the steps above again and see if it works (note: the code from step 4 should be located somewhere below post-footer-line-2)
          Please write me back if this didn't help.

        4. says:

          Hey Thanku, Thank u very Much Its Work Perfect on My Blog..., Thank For the share...

        5. says:

          Yeah, I agree--this is amazing and astonishingly easy. Two thumbs up.

        6. says:

          Hey dude i am unable to find this one Please help

          ,
          [From the 4th step]

        7. says:

          Hi there,

          I have the same problem than Audrey. I had a look and the code for the posts labels is actually there (hasn't been removed) but it's a little longer than the one you give. So not sure if that extra piece of code could be causing the problem.

          My test blog is: http://testblog4656.blogspot.co.uk

          Thanks for your help!

        8. says:

          Just wanted to let you know that the problem is sorted now. The issue was the post I was using for testing, didin't have any related labels!

        9. says:

          Glad it works. Thanks for visiting!

        10. says:

          When searching, please verify to have no empty space in front of the code.

        11. says:

          Yes it worked for me too. Thank you helpblogger...

        12. says:

          Very useful tutorial. Keep blogger and regards...

        13. says:

          Great great! Finally i solve my problem. Thank you very much...

        14. says:

          Hi I can't seem to find the code "," please help :| I'm having problem on it as blogger have new html editor.

        15. says:

          Help! I think my problem is in Step 5 because it says that there is an error and that the widget with the id "Blog1" cannot contain element: "b:if". A widget can only contain b:includable elements.

          And I don't know if this affects anything, but my blogger EDIT HTML does not have that little box that says to expand the template.

        16. says:

          i can't find this code in my templete help me?
          ,

        17. says:

          Wow thank you!! EXTREMELY HELPFUL!

        18. says:

          excellent

        19. says:

          You're welcome! Thanks for stopping by :)

        20. says:

          Hi Audrey,

          It seems that the new Blogger template editor has brought some changes in the template code. I've updated my post with some explanatory screenshots, please make a backup of your template before making any changes. If need more info on how to use the new template editor, you can check out this post: How To Use the New Blogger HTML Editor.
          I hope it will work now... Thanks for visiting!

        21. says:

          Hi Cj,

          I've added some explanatory screenshots to my post, you may want to take a look at them. For more info on how to use the new template editor, please check out this tutorial: How to Use the new Blogger template editor

          Hopefully this will help. Thanks for visiting!

        22. says:

          Help, when i added in all the code, the widget appears in a vertical line and not horizontally!

        23. says:

          I have the same problem, the links appears in vertical way :(

        24. says:

          Aubrey, You need to add it before so you will no longer get the error. It should be within not after .

        25. says:

          Hey... this article is awesome, this is just what i'm looking for... once i try, it works... i've tried many tips and trick, but they don't work..
          thanks for the article.. this is very helpful..
          visit mine: http://catatansukiman.blogspot.com/

        26. says:

          I follow the direction, but still nothing happen :(
          please tell me in which way the mistake ?
          my web breadcakebakery.com

        27. says:

          Great great! Finally i solve my problem. Thank you very much...

        28. says:

          why can't I find this line in my blog?

          ,

        29. says:

          thank you!!worked great....the only thing i want to know that most of the related posts showing no image...pls state the reason?do i have to add a image at the bottom of every post?
          and also i want square shape...how do i change it?
          here's mine
          renewpowerzone.blogspot.in

        30. says:

          Hey. I have a couple questions.

          #1: How do I get this to be above my footer, within the post area?

          #2: Even though I changed the values in orange for the circle radius, nothing happens and they remain the same. As someone else asked, can I make them more square?

          #3: I can't seem to get the title or summary to be visible. The title only appears on the hover. I'm not sure what I did wrong.

          Here's my blog, and a post for reference: http://www.auniesauce.com/2013/04/feminine-floral.html

        31. says:

          PS> fixed the circle vs square image . for some reason my blog took a long time to load it :)

        32. says:

          wow, am i blowing you up today, or what? i fixed the title and summary issue. i changed stuff that made it too short to display them. next up... can you still help me figure out how to get the related posts above my footer? i'd like to have my post // related posts // footer // comments. does that make sense?

        33. says:

          Hey Aunie, It is so easy, find post-header-line-1 and then add the related posts code just above. It will be under your post body.

        34. says:

          Hey Audrey. Did you ever figure it out? I get "undefined" as well. I did every step as they said, but now I can't even find the exact loop-data-labels section

        35. says:

          Nevermind, I see how you solved it. You signed up at LinksWithin: http://www.linkwithin.com/learn?ref=widget

          I'mma try that now. Thanks!

        36. says:

          Thanks Diamant! Now how about something else... what about if I want to put the related posts UNDER my comments, so it will be like posts>footer>comments>related posts. Do you know the quick fix?

        37. says:

          not appear to me to step 4

        38. says:

          Hi, I followed all the steps but sadly, all my tumbnails are now just vertical and not horizontally aligned. Help? :)

        39. says:

          hi instead of showing thumbnails from media thumbnail how do i make it show from post url instead

        40. says:

          Hey Admin it is not working in my blog.....Please check it out whats the problem......

          www.technocrysis.com

        41. says:

          Hi Aunie,

          Sorry for the very late reply! I've been missing from the internet for a while.
          Add this code below the 2nd <data:post.body/> :

          <b:if cond='data:blog.pageType == &quot;item&quot;'>
          <div id='relatedpostssum'><div style='text-align: left; font-size: 15px; margin-top: 30px; font-weight: bold;'>RELATED POSTS</div>
          <script type='text/javascript'>showrelated();</script>
          </div>
          <div style='clear:both;'/>
          </b:if>

          Hope it works. Thanks for visiting :)

        42. says:

          Hi Amrit,

          The No Image Available pic appears for those posts to whom you haven't added any images, so you have to add your own images to all of your posts or you can replace the code in blue with the url of your own image.

          For the square shape, remove the orange lines (step 6).

        43. says:

          Try adding this code below the 2nd <data:post.body/>

          <b:if cond='data:blog.pageType == &quot;item&quot;'>
          <div id='relatedpostssum'><div style='text-align: left; font-size: 15px; margin-top: 30px; font-weight: bold;'>RELATED POSTS</div>
          <script type='text/javascript'>showrelated();</script>
          </div>
          <div style='clear:both;'/>
          </b:if>

          And remove the one that you have added at step 5.

        44. says:

          You're welcome :)

        45. says:

          Hi Thea,

          Try adding this code below the 2nd <data:post.body/>

          <b:if cond='data:blog.pageType == &quot;item&quot;'>
          <div id='relatedpostssum'><div style='text-align: left; font-size: 15px; margin-top: 30px; font-weight: bold;'>RELATED POSTS</div>
          <script type='text/javascript'>showrelated();</script>
          </div>
          <div style='clear:both;'/>
          </b:if>

          And remove the one that you have added at step 5.
          Hope it works... Sorry for the late reply!

        46. says:

          You're welcome. Thanks for stopping by :)

        47. says:

          Thanks it is working at my website but i need also show at front page too. so what should i do??

          Thanks

          http://urdubooksandnovels.blogspot.com/

        48. says:

          Good tips! TQ admin! DONE!

        49. says:

          hi! i have a problem i have added this on my blog but its not showing posts it showing undefined can tell me what the problem and how to fix it.I love your blog hope you will help me.

        50. says:

          Hey man thanks a lot for this awesome post... Doing great keep up the good work (Y)

        51. says:

          I clicked edit html and couldnt find the tag. please help?

        52. says:

          Hi Admin, i added it but it is showing me undefined please help me out.

        53. says:

          I follow the direction, but still nothing happen :(
          please tell me in which way the mistake ?
          My site is http://watercumweightloss.blogspot.in/
          Help me please

        54. says:

          Hy admin you doing awesome , glad to learn from you,i add this related post things but it didt work in my blog, if you could please help me out and tell me whats the problem..
          www.abaychall.blogspot.com

          waiting

        55. says:

          Do you have a tip that will make the thumbnails less blurry? For some reason, for any width/height px over 100, mine get blurry. Any tips? www.auniesauce.com

        56. says:

          "The widget with id "Blog1" cannot contain element: "b:if". A widget can only contain b:includable elements."

          help?

        57. says:

          HI, thanks for this great post...it's the first one that's worked on my blog! However, I am getting the same issue as Thea...all my related posts are showing up as vertically aligned instead of horizontally. When I used the code that you suggested to her, it gave me blank picots, summaries and titles. Can you assist?
          Thanks,
          MK

        58. says:

          Hi admin
          Thanks for a great site and a beautiful widgit.
          I have tried several times to make this work, but my related post always end up aligning under each other instead of next to each other. I have tried what you write just above here, but still nothing works right.
          Have you got any idea what i do wrong?
          Jesper Homann
          www.specialundervisningikt.blogspot.dk

        59. says:

          oh my god, it works really well on my blog
          your tutorial is easy to understand, thank you

        60. says:

          So...where does the related posts pops up anyways? Can't see it anywhere?

          http://mylifebuzzes.blogspot.com/

        61. says:

          Hello, all my related posts are showing up as vertically. Please help me!

        62. says:

          Help, when i added in all the code, the widget appears in a vertical line and not horizontally!
          When I used the code that you suggested, it gave me blank picots, summaries and titles.

        63. says:

          Hi Sanirio,

          Please add the second code from step 3 above the head tag (the one that starts with style)

        64. says:

          Hi Merrie,

          Please add the second code from step 3 (the one that starts with style) just above the head tag. Hope this works

        65. says:

          hi admin, could you help me?
          i used your tutorial with my old template and it worked really well, but now when i was trying in my new template, it didn't work well. there are no picture and text on my related post. is there something wrong in my step? thank you

        66. says:

          Hi admin,

          I'm so glad that this is finally the thing that works for my blog. There's only one issue is that I have the same problem with Audrey, which is both the title and post summaries show "UNDEFINED". And the thumbnails do not show too. I've tried what you told Audrey so it can be fixed but nothing changed. Help please.

          Plus how can I centerlize the widget? Cuz apparently it shows on the left align. :(

          This is by far the most satisfying related posts widget that Im absolutely in love with. And I really need this for my blog. Thank you tons!!

        67. says:

          Hi Admin,
          Thanx for the great tutorial!
          I've put the widget on my blog and it works pretty fine but thumbnails look a bit blurry, any tip about that?
          I'd like to show the Related Posts also in Homepage, how can I do that?
          Thank you again. :)

        68. says:

          Thanks a lot... it works.. salute u for this trick and for a such a good blog..once again thanks

        69. says:

          Thank u for the tutorial. It works. But, I also added the smileys. Due the footer line count, the smiley appears before related post. I want to exchange the position, please help. It would have been useful for the readers to apply the smileys if they were just above the comment box and under the related posts.

        70. says:

          This comment has been removed by a blog administrator.

        71. says:

          I don't understand the instructions you have given :(

        72. says:

          It's so pretty! But sadly, it runs so slowly on my blog that I had to remove it. Is there a way to solve this problem? Thanks.

        73. says:

          I LOVE YOU SO MUCH MR........THANK U

        74. says:

          how to hide the summary?

        75. says:

          Thank you so much for this blog! Integrated it without a.. oh yeah.. forgot the labels too, but after adding them it worked perfect.

          Reginald

        76. says:

          Thanks a million! It works perfectly fine! :D

        77. says:

          I'm glad this worked for you :) Thanks for visiting!

        78. says:

          I followall the instrunsctions correctly but nothing apeared :( i also tried your other two widgets but nothing apeared :( please help!

        79. says:

          You don't know how happy I am when its finally working on my blog!!!!!!!!!! :)

        80. says:

          Hi Milka Bago,

          You could increase the width of the related posts container - find #relatedpostssum { and add a higher percentage to width: 100%

          Or you can try to make the posts area smaller - for this decrease the "120px" width value from ".relatedsumposts". This should leave enough space for the 5th element.

          I hope this will work for you. Thanks for visiting!

        81. says:

          I'm glad it worked for you. Thanks for visiting :)

        82. says:

          Thanks! It worked. I'm loving this blog! :)

        83. says:

          Hi, I add everything, the only problem is that there is no image available on every related post. This is our blog
          http://nvonarativ.blogspot.com/2014/07/americki-film-sam-kod-kuce-bio.html. Where the problem can be? Thanks!

        84. says:

          please, can someone help me? I still have the problem that my thumbnails are vertical instead of horizontal. If I ad this code like in the previous comments: it just gives it to times and there both unidentified. If i remove the step 5, it just shows unidentified again and none horizontal still vertical. If i try to add the unidentified step thats in the comments, the blogger thing gives defaults and I can't save it at all... So pretty pretty please, can one of you guys help me? my blog is http://evenbijkletse.blogspot.nl

          <3

        85. says:

          hello admin. i followed all your steps but as in the capture pic http://postimg.org/image/gz9718njn/ the word "Related Posts" cannot be seen all... i already tried to change the widget width to another size but still the same :X can you please guide me on how i can change it? which code area i should change so that i can see the "Related Posts" word?

        86. says:

          Hi there,

          Add this CSS above the ]]></b:skin> tag:

          .post-footer-line-4 > *:first-child {
          margin-left: 10px;
          }

          And change the "10px" value if you need to move it more to the left.

        87. says:

          in my tamplate i can not find the code from step 4. what should i do?

        88. says:

          please, can u tell me what should i do?

        89. says:

          i put that code back. now i recive the message /undefined/. what should i do? please tell me, in the past i have the same things from you but i do not way it not work any more.

        90. says:

          never mind. i succsed. i made some change in cod surce, and is finaly done. thks for this post.

        91. says:

          I was wondering the same thing. When you run your site through Google Page Speed it's much slower with widget.

        92. says:

          thank you for sharing the code. I really like the circular image effect, it makes the difference with other related post.
          I highly recommend the related post widget with thumbnails to the bloggers.

        93. says:

          I don't want say anything. It is not working on my blogger check it out.... http://www.journalofsaud.com/

        94. says:

          Thank you

        95. says:

          that works cool :D

        96. says:

          Thanks a lot i have searched and tried many related post widget but nothing seems to work except yours thanks for this stylish awesome widget

        97. says:

          Hello there Admin..
          Please help me to solve the "No Images Thumb" at my Blog
          http://raqillababyshop.blogspot.com/

          Thankyou

        98. says:

          Hi there,

          I have the following problem, i followed all the steps but it works only for the posts that the sum of labels >=4, for the rest it is undefined.
          see here: http://www.bainbucatarie.com/2013/07/pizza-cu-mozzarella-si-prosciutto.html
          see for the label "prajituri" (cookies) is not working: http://www.bainbucatarie.com/2014/11/biscuti-cu-ovaz.html

          How can I solve this issue?

          Thank you!

        99. says:

          Added to my blog. Thanks

        100. says:

          Great, but it doesn't show me the thumbnails.
          https://www.ou2sz.com/2020/09/blog-post_24.html

        101. says:

          Hi ou2sz Admin, Thank you for your comment. The thumbs-and-summaries.js was outdated. I've updated this JavaScript. Hope this JavaScript will work.

        102. says:

          Hello!
          Thank you for your efforts, but unfortunately it doesn't work. Can you help me please?
          Have a good evening!

        103. says:

          Hi ou2sz Admin, I've tested the above code in my Blog also one of your ou2sz.com blog's page. And there is no issue in the code. It is working perfectly. But the reason behind not showing thumbnails of your most of the pages is your images URL. Almost all images are hosted from https://lh3.googleusercontent.com/ . That means you are presenting your images from Google Photos. And this type of image URL is not detect as thumbnail in feed (https://www.ou2sz.com/feeds/posts/default). The code "media$thumbnail" written in JavaScript use to find thumbnail from blog feed. But in your blog feed there is no "media$thumbnail". That's why it is showing default "No Image Available" thumbnail.

          Now the question how to solve this issue?
          1. First choose which image do you want to represent as a thumbnail.
          2. From you post edit section, select "Upload from Computer" to upload that image. [NOTE: Don't select "Photos"]
          3. Look. The image URL looks like https://3.bp.blogspot.com/ or https://1.bp.blogspot.com/ [After https:// the number may be 1, 2, 3 whatever but make sure it hosted from bp.blogspot.com]
          4. Make sure the image you choose for thumbnail must be first image of your blog post.
          5. Do this in all of your blog posts. [You can test on some same category (label) of your blog posts.]

          I hope there will be no problem this time.

        104. says:

          I did a test, but it doesn't work ...
          https://www.ou2sz.com/2010/11/4444_3.html

        105. says:

          I understand. I decided to replace "lh3.googleusercontent.com" with "1.bp.blogspot.com". If I re-upload the image - it works!
          You're great, thanks!!!

          Still, can't it work with current image addresses?