Don't Miss

Latest Posts
Browsing Category "Blogger Tricks"

How to Block AdBlocker on your Blogger Blog

- 3 Comments
AdBlocker is a browser extension, available on all major browsers and it is used to block advertisements and pop ups shown on websites. Advertisements annoys each and every visitor of our blog, especially pop ups. AdBlocker is useful to stay away from those annoying and disgusting ads, but this extension is a roadblock in the path of a blogger. Due to this extension visitors don't reach ads and it effects the earning of bloggers. AdBlockers totally affect life of bloggers who want to make money from there blogs. It also reduces CPM, CPC and other rates which you use to generate your revenue. There are two ways that you can use to block AdBlockers, the first one is to ask your readers to remove AdBlocker extension and the other one is that, force them to remove AdBlocker. If thousands of people visits your blog daily then it is impossible to ask each of them to remove AdBlocker extension which means that we have to force them to remove AdBlocker. So, today in this tutorial we'll show you that How to Block AdBlocker on your Blogger Blog.

How to Block AdBlocker on your Blogger Blog

Step 1. Log in to your Blogger Account
Step 2. Select a Blog >> Template >> Edit HTML >> Search for the ]]></b:skin> tag and above/before it paste the following code

#bgt_noadblocker {
display:none;
}

Step 3. Again Search for </head> and paste the below code just above/before it

     <script type="text/javascript">
    if (document.getElementById("bgt_noadblocker") != undefined)
    {
    }
    else
    {
        alert("We've detected that you're using AdBlock Plus or some other adblocking software. In order to keep this website free, this site is sponsored in part by advertisements.\r\nPlease consider disabling your ad blocker on this website\r\nif you enjoyed the content, and would like to support future \r\ninformative posts.Thank you!\r\n\r\nClick OK to continue\r\n\r\nPowered by www.blogolect.com...");
            setTimeout("nag()",12000);
    }
    </script>

Step 4. Now Search for <body> and just below/after it paste the following code

<script type="text/javascript" src="http://ftp.bauer-power.net/misc/tc/advertisement.js"></script>

Step 5. Hit the Save Template button and you're done!
Now if any visitor with AdBlocker enabled visit your site will face an annoying message, he will get this message until he disables AdBlocker.

From Editors Desk

We hope this tutorial may have helped you in learning How to Block AdBlocker on your Blogger Blog. Share this tutorial with your friends and don't forget to subscribe us.

How to Remove Locked Widgets in Blogger

- No Comments
Have you ever used a blogger template consisting of widgets that are irremovable? Blogger is a flexible platform and you can easily do whatever you want. One if its feature is that you can upload your custom templates to make your blog friendly and beautiful. There are thousands of free and paid templates available on the web, which you can use for your blog. Usually all the widgets in blogger are removable, you can easily add or remove widgets. But have you ever noticed that sometimes after uploading a custom template, some widgets are locked in the layout section and you can't remove them, just like header and blog posts widget. You're unable to delete these widgets because these widgets are locked. Recently one of our users asked us that How to Remove Locked Widgets in Blogger. So today in this tutorial we'll show you that How to Remove Locked Widgets in Blogger.

How to Remove Locked Widgets in Blogger

Step 1. Log in to your Blogger Account >> Select a Blog
Step 2. Go to Template >> Backup your Template >> Edit HTML >> Jump to Widget and choose the widget which you want to remove (Note: Read the 2nd part of this article to learn how to find a widget in HTML Editor)
Step 3. You'll be jumped to that widget's coding. In your widget's coding you'll see locked=true if that widget is locked

<b:widget id='Navbar1' locked='true' title='Navbar' type='Navbar'>

Step 4. Replace true with false and hit Save Template button

<b:widget id='Navbar1' locked='false' title='Navbar' type='Navbar'>

Step 5. Now go to Layout >> Click Edit on that widget >> Click Remove button at the bottom
And you're done!

How to find Widget Code in Template Editor

Step 1. Log in to your Blogger Dashboard
Step 2. Go to Layout and locate the widget
Step 3. Hit the Edit button below that widget a popup window will open
Step 4. In the URL of that popup which would somewhat looks like this

https://www.blogger.com/rearrange?blogID=5715141813565760436&action=editWidget&sectionId=sidebar-right-1&widgetType=null&widgetId=HTML10

Step 5. The widget Id of that widget is just after widgetId= which is HTML10.
Now go to Template >> Edit HTML >> Jump to Widget and Select the widget with Exact ID

From Editors Desk

We hope this tutorial may have helped you in learning How to Remove Locked Widgets in Blogger. Share this tutorial with your friends and don't forget to subscribe us.
If you're still confused then ask your question in the comments section below.