Monday, June 11, 2018

How To Remove Showing Posts With Label Message In Blogger



When your blog reader clicks any of your lablel, then they see a message telling them that they are now viewing all of your published posts that are categorised under that label.

These messages looks very bad when you are using label as your navigation bar/menu. So to remove it we will do the following tricks.

But before that always backup your template which i say again n again in every topic. This is to make sure that if something goes wrong with codes then you can easily restore your old template to keep your blog working.

Step 1

Go to blogger dashboard menu. Select template, then Edit HTML. This will open HTML editor.

Step 2

Click on anywhere in the edit box then press CTRL+F to activate search box.

Step 3

Find the below code :
<b:includable id='status-message'> ... </b:includable> 

If you can see the three dot (...) then click on it to expand the code further or in another way click on the black arrow on the left to expand this code.
<b:includable id='status-message'>
<b:if cond='data:navMessage'>
<div class='status-msg-wrap'>
<div class='status-msg-body'>
<data:navMessage/>
</div>
<div class='status-msg-border'>
<div class='status-msg-bg'>
<div class='status-msg-hidden'><data:navMessage/></div>
</div>
</div>
</div>
<div style='clear: both;'/>
</b:if>
</b:includable>
Replace it with the code mentioned below :
<b:includable id='status-message'>
<b:if cond='data:navMessage'>
<div>
</div>
<div style='clear: both;'/>
</b:if>
</b:includable> 
Save the template and you are done. Check your blog to confirm it.


You Find this article helpful? Post your comment below.

How To Center Post Title And Date Header In Blogger



Sometime we feels to Center Post Title and Date Header in center. It not only gives better looks but also gives satisfaction.

Lets do it then, but before that always backup your template which i say again n again in every topic. This is to make sure that if something goes wrong with codes then you can easily restore your old template to keep your blog working.

Step 1

Go to blogger dashboard menu. Select template, then Edit HTML. This will open HTML editor.

Step 2

Click on anywhere in the edit box then press CTRL+F to activate search box and find the following code.

Step 3

Find the below code :
]]>
</b:template-skin>
Add these codes above it.


Code to center post title
.post-title {
text-align:center;
}

 Code to center date header
.date-header {
text-align:center;

Save the template, you are done. Now check your blog.


You Find this article helpful? Post your comment below.

Fix Schema Markup Errors In Blogger


Schema Markup or Structured Data  is the most useful feature to help your blog or site to get easily index my search engine whether that be Google, Yahoo, Bing or other search engine. Any error in Schema Markup makes your blog or website get rejected by search engine or even if they index your blog or site that is even 1-2% of your content. So, its very very important o fix these errors.

Today i will help you to fix structured data schema markup all errors for your Blogger. Before fixing you should check errors from Google Structured Data Testing Tool.

You may see many errors and warnings like mentioned below :

mainEntityOfPage,

dateModified, 

Image, 

Image_URL, 

publisher,

headline, 

blogId, 

postId.

If you are seeing all these errors and warnings mentioned above then no need to worry about it. I will try my best to help you fix these errors and warnings.

Lets Proceed.

Important!

Before proceeding further backup your template. So, that if something wrong happens you can easily restore old backup to working condition of your blog.

Step 1

Go to blogger dashboard menu. Select template, then Edit HTML. This will open HTML editor.


Step 2

Click on anywhere in the edit box then press CTRL+F to activate search box and find the following code for fix the errors and warnings.

 1. The mainEntityOfPage field is recommended. Please provide a value if availables

Find  the below code :
<div class='post hentry uncustomized-post-template' itemprop='blogPost'
itemscope='itemscope' itemtype='http://schema.org/BlogPosting'>
Replace it with code mentioned below :
<div class='post hentry uncustomized-post-template' itemscope='itemscope'
itemtype='http://schema.org/BlogPosting'>
<meta itemscope='itemscope' itemprop='mainEntityOfPage'
itemType='https://schema.org/WebPage'
expr:itemid='data:post.link ? data:post.link : data:post.url'/>

2. The dateModified field is recommended. Please provide a value if available.

Find the below code :
<div class='post hentry uncustomized-post-template' itemscope='itemscope'
itemtype='http://schema.org/BlogPosting'>
<meta itemscope='itemscope' itemprop='mainEntityOfPage'
itemType='https://schema.org/WebPage'
expr:itemid='data:post.link ? data:post.link : data:post.url'/>
Paste the following just after the div tags :
<meta expr:itemid='data:post.link ? data:post.link : data:post.url' itemType='https://schema.org/WebPage' itemprop='mainEntityOfPage' itemscope='itemscope'/>
<meta expr:content='data:post.timestamp' itemprop='datePublished'/>
<meta expr:content='data:post.lastUpdatedISO8601' itemprop='dateModified'/>

3. The headline field is recommended. Please provide a value if available.

Find the below code :
<h3 class='post-title entry-title' itemprop='name'>
Replace it with code mentioned below :
<h3 class='post-title entry-title' itemprop='headline'>
Note : You may see this code two times. You have to change both times.

4. A value for the image field is required.

Find the below code :
<data:post.body/>
Paste the below code after the above code :
<div itemprop='image' itemscope='itemscope' itemtype='https://schema.org/ImageObject'>
   <b:if cond='data:post.firstImageUrl'>
    <img style='display:none;' expr:src='data:post.firstImageUrl'/>
     <meta itemprop='url' expr:content='data:post.firstImageUrl'/>
  </b:if>
    <meta itemprop='width' content='800'/>
    <meta itemprop='height' content='800'/>
</div>
Note : You may see this code two or three times. You have to check each code and see which one fix this error.

5. A value for the publisher field is required.

Find the below code :
<data:post.body/>
 Paste the below code after the above code :
<div itemprop='publisher' itemscope='itemscope' itemtype='https://schema.org/Organization'>
    <div itemprop='logo' itemscope='itemscope' itemtype='https://schema.org/ImageObject'>
      <img style='display:none;' src='http://doityaar.com'/>
      <meta itemprop='url' content='http://doityaar.com'/>
      <meta itemprop='width' content='600'/>
      <meta itemprop='height' content='60'/>
    </div>
    <meta itemprop='name' expr:content='data:blog.title'/>
</div>
Note : You have to paste this code where Step 4 code is pasted.

6. The property image_url is not recognised by Google for an object of type BlogPosting.

Find the below code :
<b:if cond='data:post.firstImageUrl'>
<meta expr:content='data:post.firstImageUrl' itemprop='image_url'/>
</b:if>
Find this and remove this code entirely.

7. The property postId is not recognised by Google for an object of type BlogPosting.

Find the below code :
<meta expr:content='data:post.id' itemprop='postId'/>
Find this and remove this code entirely.

Note : You may see this code two times. You have to change both times.

8. The property blogId is not recognised by Google for an object of type BlogPosting.

Find the below code :
<meta expr:content='data:blog.blogId' itemprop='blogId'/>
Find this and remove this code entirely.

Note : You may see this code two times. You have to change both times.



You Find this article helpful? Post your comment below.



How To Add A Widget Inside Your Blogger Blog Header


Before I proceed further, Let me tell you that Blogger header is a very powerful area and most of the visitors eyes directly falls over there first. Due to this reason many Blogger's owners likes to put Google AdSense on that particular area. As i said above it is the most powerful area so it can give maximum number of impressions. As this is the most eye catching area so it will give you more earning too using Google AdSense.

Other than Blogger, you may have noticed on different blogging platform like Wordpress etc.. that they place their Google AdSense on header area. On blogging platform like Wordpress, you may get a plugins to place your Google AdSense codes. Other than Google AdSense you can also put codes for social plugins, search box or any other widgets you may like.

Unfortunately, blogger does not provide it whether that be the default template or a customized one. This is because header section is usually locked and have no option to add a gadget inside it. But if you are using paid Blogger template then you can contact the developer and ask him / her to give you the option to add a gadget to the header area.

Important!

Before proceeding further backup your template. So, that if something wrong happens you can easily restore old backup to working condition of your blog.


Step 1

Go to blogger dashboard menu. Select template, then Edit HTML. This will open HTML editor.


Step 2

Click on anywhere in the edit box then press CTRL+F to activate search box and find the following code.

Step 3 

Find the following line of code :
<b:section class='header' id='header' maxwidgets=
Step 4 

Replace class='header' with class='header header-left'

Step 5

Now find the following like of code :
<div class='header-cap-bottom cap-bottom'>

Just above this line, you should see two div tags :
</div>
</div>
<div class='header-cap-bottom cap-bottom'>
Step 6 

Paste the below HTML code, just above these two divs tags :
<div style='clear:both;'/>
Step 7 

Just above <div style='clear:both;'/> add the below code : 
<b:section class='header-right crosscol' id='header-right' maxwidgets='1'
showaddelement='yes'/> 
Step 8 

Find the below tag :
</head>
Step 9 

Just above </head> tag, add below CSS code :
<style>
.header-left{
display: inline-block;
float: left;
}
#header-right {
display:inline-block;
float:right;
}
</style>
Press the save button and its done.

Go to the layout section and you should see add a gadget option in header area.

Sunday, October 8, 2017

How To Enable Windows File Extension To Prevent Ransomware




Present days Ransomware is the of the most major threat that peoples are considering. Peoples are now a days are not caring so much about other malwares and viruses as they concering too much for Ransomware.
Obiously their concerns matters. Ransomwares are such kind of malwares that when infects any computer it encrypts all the files that are generally used by peoples everyday. Here all the files means that those files with certain extentions like .txt, .pdf, docx, .jpg, .psd .mp4, avi and much more.

You might be wondering and asking yourself who makes the Ransomwares? Ransomwares are made by those groups of peoples having advance and extraordinary knowledge about programming. And they use their programming skills to do some kinds of evil activities like creating Ransomwares. Once they convince someone to run their evil Ransomare, it encrypts all their files present in the computer and shows a screen and provide them a html based webpage or directly textfile or all to tell them that their all the files present in their computers are locked. To decrypt their files and to get them like previously working condition for that they need key which is stored in malware authors server. To get the a key victims have to pay a certain amount of money in Bitcoin cryptocurrency form. Once victims payment is confirmed by those malware authors then they send the key to their victims or their malware program automatically starts to decrypts their files.

Sometime it is noticed that even after paying and decrypting all the files some files still don't works and they are damaged permanently.

Few months back on May 2017 there was Massive ransomware attack known as WannaCry ransomware attack happened worldwide. The attack began on Friday, 12 May 2017 and within a day was reported to have infected more than 2,30,000 computers in over 150 countries.

Below is the pic of WannaCry ransomware, have a look:


WannaCry propagates using EternalBlue, an exploit of Windows' Server Message Block (SMB) protocol. Much of the attention and comment around the event was occasioned by the fact that the U.S. National Security Agency (NSA) had already discovered the vulnerability, but used it to create an exploit for its own offensive work, rather than report it to Microsoft. Microsoft eventually discovered the vulnerability, and on Tuesday, March 14, 2017, they issued security bulletin MS17-010, which detailed the flaw and announced that patches had been released for all Windows versions that were currently supported at that time, these being Windows 7, Windows 8.1, Windows 10, Windows Server 2008, Windows Server 2012, and Windows Server 2016, in addition to Windows Vista (which had recently ended support). However, many Windows users had not installed the patches when, two months later on May 12, 2017, WannaCry used the EternalBlue vulnerability to spread itself. The next day, Microsoft released emergency security patches for Windows 7 and Windows 8.

This was just the examples, Now lets go to our topic.

To get the victims to run their malware program, they use different types of techniques to fool and get the victims. One of the technique that they use is what we will going to discuss in this topic today and also we will know how be safe.

The most common technique that they use is spam mail where they attach their malware and it is disguised as pdf, docs, xlsx etc. The mail appear such a way that it looks to be a legit mail from any organisation or courier delivery company. Without thinking for a moment victim realize it as original file and they download that attachment and run it. After running that malware program it instantly encrypts all the files in the computer and mentioned above



Friday, September 22, 2017

How To Backup And Restore Microsoft Office Outlook 2007


Sometime we need to format our Hard Disk or due to some other reason we have to format our Hard Disk for Fresh copy of Operating System installation.

Thursday, September 7, 2017

How To Increase Your Download Speed Or Internet Speed By 20%


Generally, by default Windows reserve internet bandwidth up to 20% for various services such as Windows updates and malware checks by using QoS Packet Scheduler. It’s not very useful unless you’re using apps which are QoS-aware or running a server, so you can gain some network overhead back by turning it off.

Before Proceeding just make sure you are logged in as Administrator to make the changes.


Follow the steps mentioned below carefully.

  • Click Start > Run > and type gpedit.msc. Following window will open, see the below pic.


  • Expand the Local Computer Policy branch.
  • Now expand the Computer Configuration branch. See the above pic.
  • Expand the Administrative Templates and then Network branch. See the below pic.


  • Just highlight the QoS Packet Scheduler branch and you will see a tab Limit Reservable Bandwidth on the right side. See the below pic.


  • Double click the "limit reservable bandwidth" settings. Select the disabled option and click OK button. See the below pic.

You are done. Now enjoy extra 20% of speed that you missed.

Monday, September 4, 2017

How to Download Android APK file in IDM


IDM (Internet Download Manager) is one of the most famous download manager software and everyone knows about it, there's no doubt!. It has highest download speed rates than compared to any other download manager software.

It has many exciting features and among them is that IDM downloads many different types of file extentions. But sad thing is that it does not have android file type extension for downloading by default (i.e. .apk file type extension). So, due to this reason many times you have noticed that during downloading any .apk files IDM does not open its own download window and instead of that browser starts to downloads it.