This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Wednesday 29 October 2014

How To Hide Certain/Specific Posts From Homepage Of Blogger Blog

Do you want to hide useless or outdated articles or posts from your blogger blog homepage without deleting them?  Generally, bloggers don’t like to hide their posts from their blog. But in some rare cases they also don’t like to show them. A blogger never want to show a finished giveaway articles and expired coupons or expired offers articles. If you show outdated information on your blog than you may lose your blog readers trust and traffic also because outdated information is always considered as spam. Every blogger want to serve only fresh and high quality articles or content to his/her blog users. So, today we are going to show you how to hide certain outdated posts from homepage of your blogger blog.

How To Hide Specific Posts From Homepage Of Blogger Blog :

Method 1 :

  • First you have to login your blogger account.
  • After logging in go to blogger Dashboard>>Templates>>Edit html and search for the below code in your blog template html [ Use Ctrl+F to search ].
<div class="date-outer">
  • Now replace the above code with the following coding lines.
 <div class="date-outer"
<b:if cond='data:blog.pageType == &quot;index&quot;'>
<b:if cond='data:blog.searchQuery == &quot;&quot;'>
<b:if cond='data:blog.searchLabel == &quot;&quot;'>
<b:if cond='data:post.url == &quot;Your Post URL&quot;'> style=&#39;display:none;&#39;</b:if>
</b:if>
</b:if>
</b:if>
</div>&gt;
* Don't forget to replace Your Post URL with your blog article or post link which you want to hide from homepage.
  • If you want to hide more than one post than place the following code in above coding just before </b:if></b:if></b:if></div>&get;
 <b:if cond='data:post.url == &quot;Your Another Post URL&quot;'> style=&#39;display:none;&#39;</b:if>
  • In same way you can hide more post from homepage.Now save your template and view your blog homepage.That's it, you have successfully removed useless articles from your homepage.

Method 2 :

  • Go to blogger Dashboard>>Templates>>Edit html and search for the ]]></b:skin>  tag in blog template.
  • Then paste the following CSS code just above the ]]></b:skin> tag.
<style>
<b:if cond='data:blog.url == ... >
#YOUR POST ID {display:none}
</b:if>
  • Now Replace YOUR POST ID with your 19 digit unique post ID number.If you don't have your post id number, read this tutorial here to get it.
  • To hide more than one post, place the following code just below the above CSS code.
 <b:if cond='data:blog.searchLabel == ... >
#YOUR 2nd POST ID {display:none}
</b:if>
  • Your can hide more posts by placing above CSS code line again and again.After placing the code save your template and view your blog homepage to see changes.

How To Hide Posts Under Specific Labels From Blogger Blog :

  • Go to your blogger Dashboard>>Templates>>Edit html  and search for the following code in your blog template.
<b:if cond='data:post.dateHeader'>
<h2 class='date-header'>
<data:post.dateHeader/></h2>
</b:if><b:include data='post' name='post'/>
  • Replace the above four lines of coding with following code.
<b:if cond="data:blog.url == data:blog.homepageUrl">
<b:if cond="data:post.labels == &amp;quot;&amp;quot;">
<b:if cond="data:post.dateHeader">
</b:if></b:if></b:if><br />
<h2 class="date-header">
<data:post .dateheader=""></data:post></h2>
<b:include data="post" name="post">
</b:include>
<b:loop values="data:post.labels" var="label">
<b:if cond="data:label.isLast">
<b:if cond="data:label.name != &amp;quot;&lt;span style=&quot;color: red;&quot;&gt;Your Blog Label Name&lt;/span&gt;&amp;quot;">
<b:if cond="data:post.dateHeader">
</b:if></b:if></b:if></b:loop><br />
<h2 class="date-header">
<data:post .dateheader=""></data:post></h2>
<b:include data="post" name="post">
</b:include>
<b:else>
<b:if cond="data:post.dateHeader">
<h2 class="date-header">
<data:post .dateheader=""></data:post></h2>
</b:if>
<b:include data="post" name="post">
</b:include></b:else>
  • Replace Your Blog Label Name with specific label name which posts you want to hide from homepage.Congratulation you have successfully removed posts under specific label from your blogger blog homepage.
Recommended : How To Fix Blogger Comment Form Message Error In Threaded Comments
Thanks for taking your time to read above article.We hope above helps you in removing outdated posts from your blog homepage without deleting them.This article is for those bloggers who don't want to show low quality posts on their homepage.Please leave feedbacks and suggestions below in comment box.And please don't forget to socialize this article.

7 Ways To Make Your Blogger Blog SEO [ Google ] Friendly

Search engine optimization is very important for every webmaster and blogger to get massive search traffic from search engines like Google, Bing, Yahoo etc. We can easily make WordPress blog SEO optimized by using some SEO plugins. But it is difficult to make blogger blog SEO friendly. Some peoples thinks that blogger blog is SEO friendly by default because it is owned by Google. But all of them are wrong, we have to make our blogger blog SEO optimized to get organic traffic. Today, we are going to share amazing SEO tactics to make a blogger blog SEO optimized.

How To Make Blogger Blog SEO And Google Friendly :

#1 Post Title Optimization :

You might have noticed that your blogger blog homepage title appears before your post title. Google shows only 66 Characters of your title. Showing homepage title before post title is very bad for SEO. So, we have to do some changes in blogger template to optimize post title in blogger blog. Follow below steps to show post title before blog homepage title in search results.
  • Go to Blogger>>Templates>>Edit HTML
  • Search for below code in your blog template HTML.
  <title><data:blog.pageTitle/></title>
  • Now replace the above line of code with below code and save your template.
  <b:if cond=’data:blog.pageType == &quot;item&quot;’>
<title><data:blog.pageName/> | <data:blog.title/></title>
<b:else/>
<title><data:blog.pageTitle/></title>
</b:if>
  • That's it, now Google will show your post title before blog homepage title in search results.

#2 Post Title Heading Tag Optimization :

  • Go to Blogger>>Templates>>Edit HTML and Search for .post h3 and replace it with .post h2.
  • Now search for below line of code.
 <h3><data:title/></h3>
  • Replace above code with below code line and save your template.
  <h2><data:title/></h2>
  •  That's it, now your blogger blog post title is SEO friendly.

#3 Submit Your Blogger Blog Sitemap In Google & Bing Webmaster Tools :

In order to index your blog posts faster on Google & Bing you have to submit your website or blog sitemap link into Google Webmaster Tools & Bing Webmaster Tools.Follow below links to submit your sitemaps on Google & Bing.
  1. Google Webmaster Tools
  2. Bing Webmaster Tools

#4 Make All External Links In Your Blog Posts No follow  :

  • Go to Blogger>>Templates>>Edit HTML and search for </head> tag in your blogger template coding and paste the following code just above it.
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.js' type='text/javascript'></script>  
<script type="text/javascript">
jQuery(document).ready(function () {

jQuery('a[href*="http://"]:not([href*="http://www.mytricksyard.com"])').attr('rel', 'nofollow');

jQuery('a[href*="https://"]:not([href*="https://www.mytricksyard.com"])').attr("target", "_blank");

    });
</script>
  • Replace http://www.mytricksyard.com with your blog URL and save your template.
  • That's it, above script makes your blog all external links no-follow and also open them on new window your blog users click on link.
Recommended : Great Trick To Make Your Blogger Blog Do-follow

#5 Fix All Crawl Errors Of Your Blog Or Website By Using Google Webmasters Tools :

  • Go to Google Webmaster Tools and select your website their to check Crawl Errors.
  • On next page click on Crawl>>Crawl Errors.
 

  • Now Google shows list of crawl errors detected by Google bots.In order to fix 404 error Go to Blogger>>Settings>>Search Preference>>Errors and redirections and use Custom Redirects to redirect broken links into working links.After fixing all errors mark them as fixed.
 

#6 Set Custom Robots Header Tags :

  • Go to Blogger>>Settings>>Search Preference>>Crawlers and indexing and click edit button available after Custom robots header tags option and enable custom robots header tags.
  • Now do the changes same like below picture and click on save changes button.
 

#7 Add Custom Robots.txt Content In Blogger Blog :

  • Go to Blogger>>Settings>>Search Preference>>Crawlers and indexing and enable Custom robots.txt.
  • Paste following text in blank field their and click on save changes button.Don't forget to replace http://www.mytricksyard.com with your blog homepage link.
User-agent: Mediapartners-Google
Disallow:
User-agent: *
Disallow: /search/
Disallow: /search?
Disallow: /search?q=*
Disallow: /*?updated-max=*
Disallow: /p/about.html
Disallow: /p/privacy.html
Allow: /
Sitemap: http://www.mytricksyard.com/atom.xml?redirect=false&start-index=1&max-results=500
Recommended : Top 7 Google Friendly Blogger Templates For Technology Blogs

Thanks for taking your time to read our post. We hope above article helps you to make your blogger blog SEO and Google friendly.If you are facing any problem during implementation of above steps, please let us know by comment box.We will try to solve your problem.Don't forget to share this post with social friends.

How To Recover Permently Deleted Posts In WordPress And Blogger

Have you accidentally deleted your blog posts? Do you want to recover deleted posts of your blog? Today I was accidentally deleted one of my blog post. Actually, I want delete a draft post, but clicked delete button of other published post. I didn’t find any option to recover the deleted posts on blogger. Then I tried out external methods to recover my deleted posts and I have successfully recovered it. Are you facing same problem or do you want to recover your previously deleted posts and pages of in WordPress or blogger blogs? It is very simple task to recover the deleted posts. So, today we are going to show you how to restore the deleted posts in WordPress or blogger blogs by various methods.

How To Recover Deleted Posts & Pages In Blogger & WordPress Blogs :

Method 1 : How To Recover, If Your Deleted Posts Is Indexed In Google Search Engine 

  • Go to Google.com and write the title of your deleted post in blank box and click on search button.If your posts is indexed on Google search engines, google will show your deleted post in search result like below image.
  • Now click the down arrow button [ available just after the green link ]. A small drop down menu will open up like below picture.
  • Click on Cached option from drop down menu.Now a new window will open up with your post text and other content.
  • Than copy your post contents from the cached page and create a new post and paste your copied content there.That's it you have successfully recovered your deleted posts of your blogger or WordPress blog.

Method 2 : How To Recover, If Your Deleted Posts Is Not Indexed In Google Search Engine

  • Go to https://archive.org/ put you blog link on waybackmachine search field and click on browse history button.
  • Now you redirected to the result page like below picture.
 
  • Then simply select the date and month, when you deleted your blog posts.Now you will redirected to the cache version of your blog, you can simply select your deleted posts from that page.
  • After that copy the deleted posts content and create a new post on your blog and paste it.That's it you have successfully restored your deleted posts of your blog.
Recommended : Simple Way To Fix Blogger Comment Form Message Error In Threaded Comments
 
Thanks for taking your time to read our post.Bu using above two methods, you can easily recover your blogs deleted posts and pages.If you are geting any error during the process of recovering your deleted posts, share it below in comment. We will try to solve your problem. Please share this article with your friends on social networking sites.

How To Post In Multiple Facebook Groups In One Click

Everyone knows that facebook is one of best place for all the bloggers to promote or share their blog posts.If you share posts on your facebook timeline or wall than very few peoples saw your posts.In this case, facebook groups can drive more traffic to your posts.So, first we need to join lots of groups and post our blog posts there.But it takes too much time to post all groups one by one.We are also facing the same problem before.Now we got a solution of it and today we will share a great trick to post all facebook groups in only one click.

How To Post In Multiple Facebook Groups In Single Click :
  • First of all you need to join lots of facebook groups related to your blog niche.After joining wait for admin approvel to become a member of group.  
  • After geting approvel from groups admin we have to collect the facebook e-mail addresses of joined facebook groups.
  • Some groups prvide their facebook e-mail address in their group info.Otherwise we have to find the username of the group.We can easily get the username of facebook groups by opening them into our browser.After opening groups you can see group address on our browser address bar.It will something like below link.:view above sample for example
  •   https://www.facebook.com/groups/UserName
    • Copy the username of the  facebook group and paste them into notepad or wordpad.
    • Now its time create facebook groups e-mail address from their usernames.We just need to paste the username just before @groups.facebook.com.Now facebook groups e-mail address look like below e-mail address.
     UserName@groups.facebook.com
    • Use above steps to create e-mail address for all joined groups and don't forget to seperate them with commas.After creating e-mail addresses for all groups save them into notepad,word pad,MS Word etc.
    • Now sign in your e-mail address which you have used to create account on Facebook.
    • Than click on compose e-mail option.
    • Now copy all Facebook groups e-mails and paste them into BCC field.
    • Now compose compose you mail with text,links and images that you want to post.And click on send button.
    • That's it.Now check facebook groups, your message is successfully posted in all groups.
    Note : You can't post on unjoined groups and please don't spam in groups.You may got banned for spamming in groups by group owners.
    You have follow above steps again to post again on all groups.Above trick will save your lots of time and you also get decent traffic from facebook.We hope you like above post.If you are facing any problem please share it with us below in comments, we will try to solve this.
  • Enjoy posting on fb