Table of Contents in Blogger 2021

How To add Table of Contents in Blogger 2021

Table of Contents in Blogger 2021
In this Post, we are going to see how we can insert a working table of contents in blogger that too with a single shortcode. Blogger is a platform where there are lots of limitations compared to WordPress where a single plugin would do the job.
Now onwards you don’t have to depend upon long codes and javascript which would slow down your website. We present you the first shortcode based automatic table of content for blogger.

Features of Toc Plugin

We have designed this plugin especially for blogger such that no server load or third-party scripts are loaded besides the base jquery. And it only loads after your entire page is loaded so that other important content is loaded first and making sure our code doesn’t hurt them.
  • Complete Shortcode based
  • One time setup
  • Optimized Code for Performance
  • Toggle functionality
  • Minimal CSS
And the best thing is, It’s completely free and licensed under Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.

Benefits of TOC Pro

Table of Contents provide lots of benefits for a blog like it will help visitor to get an idea of your article. If your article is lengthy it would be a helpful thing for a reader to navigate between sections.
This can catch lazy readers to stay in your article and boost your CTR, this is not all the benefits there are lots of SEO benefits that we will discuss below.

SEO Benefits

There are lots of benefits in terms of SEO like Jump to links and one-line Sitelinks below articles. When you choose a template you would probably choose SEO optimized Blogger templates for your blog just like that TOC helps a lot in SEO.
Jump to Links in Google Search
Jump to links is very useful when you wrote a lengthy article and one of your sub-keywords is ranked on google. Jump to links would catch visitors quickly as it would match the searched keyword and take them directly to the portion of the particular article.
Jump Links
One-line Sitelinks
One-line sitelinks works like the ordinary sitelinks but the only difference is that it would be listing the contents in your TOC plugin. So whatever you wrote in your article would be highlighted below your post.
one line sitelink

Table of Contents in Blogger

You have to configure little things before using the shortcode. This is a onetime job and after that, don’t have to worry about it.
First of all, make sure that jQuery and Font Awesome Icons are already installed in your blog, it is usually present in most of the themes and if you are not sure about this just open your theme and search for jquery in the search bar and same for the font awesome icons.

How to Add Table of Contents in Blogger

Please follow the instructions carefully, and always make sure that you have kept a backup of your theme in case of any errors. This step is for non AMP versions.
1. From your blogger dashboard click Edit HTML in Theme panel and paste the below code after the </body> tag.

Table of Contents in Blogger
TOC SCRIPT 1
<script async=’async’ defer=’defer’>
var head,newLine,el,title,link,ToC=”<nav class=’table-of-contents’ role=’navigation’><h4 onclick=’toc()’>Contents</h4><ul style=’display:none’>”;$(“article h2, article h3, article h4, article h5”).attr(“id”,function(arr){return “point” + arr;});$(“article h2, article h3, article h4, article h5”).each(function(){el=$(this),title=el.text(),link=”#”+el.attr(“id”),ToC+=newLine=”<li><a href='”+link+”‘>”+title+”</a></li>”}),ToC+=”</ul></nav>”,$(“.toc-pro”).prepend(ToC);function toc() {$(“.table-of-contents ul”).toggle();}
</script>{codeBox}
2. After that paste the below CSS in between <style> or <b:skin><![CDATA[ and <style> or ]]></b:skin>
Toc-script
TOC CSS CODE
.table-of-contents{flex:auto;width:fit-content;background:#eee;font-size:14px;padding:11px;margin:8px 0 30px 0}
.table-of-contents li{margin:0 0 0.25em 0}
.table-of-contents a{color:#2a5365}
.table-of-contents h4{margin:0;cursor:pointer}
.table-of-contents h4:before{font-family:FontAwesome;content:”f0c9″;padding-right:7px;}
/* For Fontaweosme 5 
.table-of-contents h4:before{font-family:’Font Awesome 5 Free’;content:”f0c9″;padding-right:7px;}
*/{codeBox}

 3. After Saving you’re theme, got to your blogger post editor and switch to HTML mode. Use this shortcode to insert the TOC in any of your posts.

Table of Contents in Blogger 2021
Final HTML Code

<div class=’toc-pro’></div>{codeBox}

That’s all, Now you don’t have to worry about any other code just use the above shortcode wherever you want the TOC to appear.



Note that you have to paste this shortcode in every post that you want to show the TOC.{alertInfo}

 

{getButton} $text={SEE ALSO-5 Best Blogger Templates} $icon={link} $color={#48525c}

How This Toc Plugin Works?

if you want to debug the errors or modify the script, this section would be very useful for you. Basically, our code search for an article tag which is usually present in most of the themes but I found some themes doesn’t have this tag.

All the head tags h1 to h5 are fetched inside the TOC block. After that, each heading tags are bundled inside the anchor tags where it is given a unique id which helps to identify the heading and its location.

This ID helps us to identify the section. Every heading will have an ID and anchor tags present with it, which will help it to locate the accurate positions. That’s how it works.

How to add Table of Contents in Blogger
Post Body Elements

The below image gives you an idea of how blogger displays content dynamically in posts and pages. There may be two <data:post.body/> one for post and other for pages. If your theme doesn’t have an article tag then our plugin will not work.
To solve this issue simply put the <data:post.body/> inside an <article> tag which will fix our problem.

Debugging the Errors

All the codes are optimized and tested in various themes but can’t be the same in every case. If you find any problem with your theme you can comment below we will be happy to help you.
As described in the above case where the article tag isn’t present you can add an article tag as shown in the above section. If nothing is showing after clicking the TOC this is the most probable reason.

Templateify Theme Compatibility

Some users have reported that they are facing some issues while trying to install the TOC plugin, first of all, it’s not the problem of our code. TOC fetches all header tags from h1 to h5 in between <article> and </article> irrespective of content.
Some of the Widgets like the related articles, author section, and other widgets are grouped inside the <article> tag, this causes our code to fetch all the content. And fix is very simple change the tags which you don’t need to h6 or h7.

Fix for Templateify Themes

Change the <h3> and <h2> tag to <h6> and change the CSS accordingly

HTML Section

++++++++++++++++++++++++++++++++++

<h3 class=’author-name’>

<a expr:alt=’data:post.author.name’ expr:href=’data:post.author.profileUrl’ target=’_blank’><data:post.author.name/></a>

</h3>

———————————-

<div class=’title-wrap related-title’>

<h3><data:allBylineItems.backlinks.label/></h3>

———————————-

<h2 class=’entry-title’>

<a expr:href=’data:post.url’><data:post.title/></a>

</h2>

———————————-

CSS Section

++++++++++++++++++++++++++++++++++

.title-wrap > h3{float:left;font-family:var(–body-font);font-size:14px;color:$(wtitle.color);font-weight:700;text-transform:uppercase;margin:0}{codeBox}

 

Conclusion

I hope that you liked this Post on how to add an automatic table of contents in the blogger and found helpful for your blog. If so please share this article with your friends who would also be benefitted. If you find any problem or issues you can Comment omment on Comments Box.

This plugin was created by Bloginos and all credits goes to the owner of bloginos.

2 thoughts on “Table of Contents in Blogger 2021”

Comments are closed.