![]() |
Top 10 blogger tips and tricks । Blogger tutorial |
Hey I am Md Mijanur Rahaman, Founder & CEO of MR Laboratory
Today I will share some tricks from my experience. We need two things to open a website. Hosting and domain. Since we are doing it with Blogger, we don't have to use hosting anymore. We are using Google's Blogger as free hosting. Many people also use Blogger's free domain. Today I will share with you some of the very important tricks of this blogger. Here are some tricks that you can use to improve your site. So let's get started.
1.Post template
![]() |
Post template । Top 10 blogger tips and tricks । Blogger tutorial - mr laboratory |
By template, we mean that the thing can be used dynamically. For example, anyone who has the code of the blog template can use it. That is, what is kept in a dynamic shape for the convenience of repeated use is called a template, not so. Well then
What is the post template?
If we want to put something like this in every post, then we have to use it as a post template. Which we want to use again and again. There are opportunities to use blogger and post templates.
How do I use the blog's post template code?
If you have a Blogger website, you can also use this post template system. First, you go to the blogger.com site. Then the setting
then You will find the post template option like the screenshot. Here you can use this HTML code. Everything you post with this HTML code will come up as a template for each post.
![]() |
Post template । Top 10 blogger tips and tricks । Blogger tutorial - mr laboratory |
2 Blogger author permission
![]() |
Blogger author permission । Top 10 blogger tips and tricks । Blogger tutorial - mr laboratory |
If you want to hire a paid author on your blog, you need to allow the person who will pay for your blog to access your blog via email.
1. Setting first
2.Basic settings
3. If you scroll a little mouse, you will see an option in the permission blog author
Click on Ad Author, enter your paid author's mail account, and click on Invite. Then a mail will be sent to him and if he clicks on the link and accepts it, then he will become the author of your blog.
Now you may have some questions,
can he edit your site?Can he remove you?
The answer to this question is no. If you do not give him admin permission.
Authors can only post, nothing can change you. But you can do everything just like before. You can add the author as you wish. Hope you understand.
![]() |
Blogger author permission । Top 10 blogger tips and tricks । Blogger tutorial - mr laboratory |
3. posting using email
![]() |
posting using email। Top 10 blogger tips and tricks । Blogger tutorial - mr laboratory |
Then you can see 3 options,
- Publish email immediately
- Save emails as a draft post
- Disabled
If you want to make a direct post like this here, then select the number 1. My email here is mrlaboratory@gmail.com
If I enter the secret code mr00, my posting email will be mrlaboratory.mr00@blogger.com.
If you mail this email, it will be posted on my blog.
If you want to do direct email posting, select number 1.
If you want to do the approval system, then select the number 2.
If you don't want to do anything else, keep it disabled. Save it.
![]() |
posting using email। Top 10 blogger tips and tricks । Blogger tutorial - mr laboratory |
4. Title linking
Blogger has a setting that most people don't use, and neither do I. However, many tricks can be done with this. With this, you can set the link in the post title of your blog so that if someone clicks on the link of that post then he will visit the link given by you. Here I can link and use my youtube video.To turn on this option you need to go to others from your Blogger settings. Enable Title Links and Enclosure Links from others setting. Just go to settings and give yes. And save it.
![]() |
Title linking। Top 10 blogger tips and tricks । Blogger tutorial - mr laboratory |
Now you can visit this link https://www.blogger.com/blog-this.g You can post on your blog by following this link. Here you can see the option to give a link after giving the title.
![]() |
Title linking। Top 10 blogger tips and tricks । Blogger tutorial - mr laboratory |
5. Custom Redirect / Link Forward
![]() |
Custom Redirect / Link Forward। Top 10 blogger tips and tricks । Blogger tutorial - mr laboratory |
If you create an about page on our blogger site, the link to the page is www.mrlaboratory.com/p/about.html. I want to make it smaller so that I can easily share it with everyone, such as www.mrlaboratory.com/about If you visit this link www.mrlaboratory.com/about you will go to our about page. To do this, go to Search Preferences from Blogger Settings. Then you can see the custom redirect option.
![]() |
Custom Redirect / Link Forward। Top 10 blogger tips and tricks । Blogger tutorial - mr laboratory |
Enter /about in the form here first box and 2nd box here put link to your about page in /p/about.html
Now if you visit /about then you will visit /p/about.html.
If you have ever deleted a page that is indexed by Google, then many people can visit that page from Google, so if the visitor does not get the real information, your website will look bad. So if you want, you can forward the link to a related page from the link of the page that you have deleted. Hope you understand.
6.Error page Redirect
![]() |
Error page Redirect। Top 10 blogger tips and tricks । Blogger tutorial - mr laboratory |
<b:if cond='data:blog.pageType == "error_page"'>Put this conditional meta tag after your <head>. Here is the link to your home page.
<meta content='0;URL=https://www.mrlaboratory.info' http-equiv='refresh'/>
</b:if>
Download the code.
7. Table Of Contents (TOC)
![]() |
Table Of Contents (TOC)। Top 10 blogger tips and tricks । Blogger tutorial - mr laboratory |
Step 1: Go to your Blogger theme settings. Then put these codes on above of the <head>.
<link href='http://fortawesome.github.io/Font-Awesome/assets/font-awesome/css/font-awesome.css' rel='stylesheet'/> <link href='http://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'/><script type='text/javascript'> //<![CDATA[ //*************TOC plugin mrlaboratory.com function mbtTOC() {var mbtTOC=i=headlength=gethead=0; headlength = document.getElementById("post-toc").getElementsByTagName("h2").length;for (i = 0; i < headlength; i++) {gethead = document.getElementById("post-toc").getElementsByTagName("h2")[i].textContent;document.getElementById("post-toc").getElementsByTagName("h2")[i].setAttribute("id", "point"+i);mbtTOC = "<li><a href='#point"+i+"'>"+gethead+"</a></li>";document.getElementById("mbtTOC").innerHTML += mbtTOC;}}function mbtToggle() {var mbt = document.getElementById('mbtTOC');if (mbt .style.display === 'none') {mbt .style.display = 'block';} else {mbt .style.display = 'none';}} //]]> </script>If you can't copy the code, you can download it from below. Now you need to put the CSS code.
Step 2: Find the ]]</b:skin> in your screen and paste the CSS codes just above the ]]</b:skin>
<!--css code-->.mbtTOC{ border:5px solid #f7f0b8; box-shadow:1px 1px 0 #EDE396; background-color:#FFFFE0; color:#707037; line-height:1.4em; margin:30px auto; padding:20px 30px 20px 10px; font-family:oswald, arial; display: block; width: 70%; } .mbtTOC ol,.mbtTOC ul { margin:0; padding:0; } .mbtTOC ul { list-style:none; } .mbtTOC ol li,.mbtTOC ul li { padding:15px 0 0; margin:0 0 0 30px; font-size:15px; } .mbtTOC a{ color:#0080ff; text-decoration:none; } .mbtTOC a:hover{ text-decoration:underline; }
.mbtTOC button{ background:#FFFFE0; font-family:oswald, arial; font-size:20px;position:relative; outline:none; cursor:pointer; border:none; color:#707037; padding:0 0 0 15px; } .mbtTOC button:after{ content: "\f0dc"; font-family:FontAwesome; position:relative; left:10px; font-size:20px; }
<div id="post-toc"><data:post.body/></div>Step 4: Now, In this step, we are going to activate the TOC in our blog posts.
It is quite simple and easy to do.
The first thing you need to do is paste the Html code given below in the blog post, where you want to show the table of content.
I will recommend you to paste the code after the first paragraph of your blog post.
<div class="mbtTOC">
<button onclick="mbtToggle()">Contents</button>
<ol id="mbtTOC"></ol>
</div>
If you do not understand then you can read this article.
Table-of-content-for-blogger
8. Import & back up
If you want to back up all the data on your blog, you can do so.Maybe someone took access to your blog or you trusted someone and gave you an admin and he removed you. At that time he will only be able to access your blog, not your domain. So if you keep exporting your posts, you can create another new blog and import the posts there. And access to the main domain is in your hands, you will remove the previous C name records and add them to the new blogger. Not just posts, you can export or back up your pages and comments. If you go to Others from Blogger settings, you will find this option.
![]() |
Import & back up। Top 10 blogger tips and tricks । Blogger tutorial - mr laboratory |
9. Google Analytics
![]() |
Google Analytics। Top 10 blogger tips and tricks । Blogger tutorial - mr laboratory |
![]() |
Google Analytics। Top 10 blogger tips and tricks । Blogger tutorial - mr laboratory |
![]() |
Google Analytics। Top 10 blogger tips and tricks । Blogger tutorial - mr laboratory |
![]() |
Google Analytics। Top 10 blogger tips and tricks । Blogger tutorial - mr laboratory |
![]() |
Google Analytics। Top 10 blogger tips and tricks । Blogger tutorial - mr laboratory |
![]() |
Google Analytics। Top 10 blogger tips and tricks । Blogger tutorial - mr laboratory |
10. disabled copy system
![]() |
disabled copy system । Top 10 blogger tips and tricks । Blogger tutorial - mr laboratory |
<script type='text/javascript'>Download code
if (typeof document.onselectstart!="undefined" ) { document.onselectstart=new Function ("return false" );
} else { document.onmousedown=new Function ("return false" ); document.onmouseup=new Function ("return true" );
}
</script>
Put this code before your blogger theme </body>. From now on, no one will be able to copy your blog post. I hope you like one of these 10 tricks. Let us know in the comments the tricks that you think are more important. Thanks.
modelpapers2021.com
ReplyDeleteKerala +2 Question Paper 2021
TN Plus Two Model Paper
GSEB 12th Model Paper 2021
HPBOSE +1 / +2 Question Papers
PSEB 10th Model Paper 2021
RBSE Matric Question Papers
HP Board 10th Model Paper
JNVST Result
Dear Assam HSLC Students you can get SEBA Model Paper 2021 The Board of Secondary Education Assam (SEBA) is Conducted to High School Leaving Certificate (HSLC)/10th class School Annual Examination in Coming Soon Responsible for Government Board of School Education It Provide SEBA Question Paper 2021 students we can Prepare Successfully than get better results and good rank – marks Assam 10th Blueprint 2021 Learning Should not stop fortunately, many Education Boards came forward to give their Previous Year Question Paper free of cost for those who are interested students can download Assam HSLC Sample Paper 2021 for your learning Directorate of Government Examinations is an independent body functioning from Assam State Capital.
DeleteSSC Suggestion 2021 All Boards
ReplyDeleteBD JSC/JDC Question Pattern
nice post about blogger tutorial.
ReplyDeletealso please visit the article : Top 5 SEO tips for blogger
Thanks for comment 😘
DeleteVery good post , u may check out this.
ReplyDeleteThanks ...
Deletegood post
ReplyDeleteNice blog
ReplyDeleteHung Coder Blog
Thanks For Backlink <3
Thanks bro
DeleteThanks For Sharing The Amazing content. I Will also share with my friends. Great Content thanks a lot.
ReplyDeleteComputer Full Form
Thanks bro
Delete