Showing posts with label Blogger/wordpress. Show all posts
Showing posts with label Blogger/wordpress. Show all posts

Monday

How To Hide Or Remove Powered By Blogger Attribution Gadget On Blogger.

How To Hide Or Remove Powered By Blogger Attribution Gadget On Blogger.


You want to customize, hide or completely remove the "powered by blogger" attribution link ?. If you notice, it can't be remove just the way you remove others. Now, i will teach you how you can get reed of it.
I divided this tutorial into two sections for easy and better understanding; the first section only dealt with how to hide the attribution link, while the second section dealt with how to remove the gadget from your bog.
Follow carefully through my steps.


First Section.


How To Hide Powered By Blogger Attribution Gadget:



Step 1:

➠Login to your Blog dashboard, click on ⇒Theme tab and then⇒ Edit HTML button.

Step 2:

➠( By using ctrl + F on ur computer) Search for the code below;
 ]]></b:skin>

➠Replace the code above with this code below;
#Attribution1{display:none;}
]]></b:skin>

*Don't worry it won't scatter your script.


Note: All what we've done above will only hide "Powered by blogger" attribution on desktop version of ur blog, so we need to do the same thing for the mobile version of your blog.

Step 3:

➠Now search for the following code;
<b:widget id='Attribution1' locked='true' title='' type='Attribution'>

➠Replace the code below with the one above;
<b:widget id='Attribution1' locked='true' mobile='no' title='' type='Attribution'>

 Finally, Save your theme or template.



Second Section.


How To Remove Powered By Blogger Attribution Gadget:


Now to remove the "Powered by blogger" attribution follow the steps:

➸In your template, locate the two lines of codes below;
<b:section class='foot' id='footer-3' showaddelement='no'> <b:widget id='Attribution1' locked='true' title='' type='Attribution'>
➸From above change showaddelement='no'>  to  showaddelement='yes'>in the first line.

Also, change locked='true'  to  locked='false' .

Finally, Save your template!.

Note: You've enabled the attribution gadget to be removed what's remaining now is to remove it...let's go there....

➸Go to the Layout option tab of your blog and click on Edit link of the Attribution Widget. Now, you will see the additional option to remove the widget.

Damytechs-attribution


Finally, click on the Save  button shown at the top-right corner and enjoy!



Now, you can easily add your own text linked copyright messages and other information by adding new Text or HTML/JavaScript Gadget in your blog footer.


You've learnt how You Can Hide Or Remove Powered By Blogger Attribution Gadget On Blogger. , if any you have any complaint just drop it down in the comment box below and don't forget to share this post if it was helpful to you. Thanks!.

Friday

How To Automatically Add A Read-More Tag To All Posts On Your Blog

How To Automatically Add A Read-More Tag To All Posts On Your Blog


This topic was actually created based on the request of a fan of this blog, but I’ve decided to publish it to the front page so that everyone can learn from it and also be a beneficiary at large.

Sometimes ago, i talked about how to put a read more attribution link to any text copied from your site , but today we're talking about adding a read more tag to each topic of ur blog post.
As a blogger you might have been seeing so many websites with this jump-break (read-more tag) of a thing and you keep wondering how it was configured or programmed on that particular blog. But whenever you try to understand how it’s been done so that you can do the same thing on your blog; you always don’t just understand or even get confused at times.

When it comes to technology, we at Damytechs blog have it as our utmost priority to make sure that we feed you with a useful, comprehensive and self-explanatory articles.
Today, I’m assuring you that you gonna learn it fully and you’ll be able do it yourself on your blog. So, just sit back and enjoy learning with us the step by step process of automatic adding of read-more tag to all posts on your blog.

Question1: What Is A Read more Tag?
A read more tag is one that summarizes a blog post by displaying the topic and a little part of the post and preceded by a “Read More” tag(link) in its front. When the “read more” link is clicked it will show the full post of that particular topic.

Question2: Why Do I Need It On My Blog?
·       It makes your blog neat and well arranged(users friendly).
·       You will be able to display lots of topics at the front page.
·       It makes your blog load faster.
·       It increases time spent by readers on your blog/site,
·       Finally, it will Increases your page views.

Question3: How Do I Install It On My Blog?
To install it on your blog follow me up from the first step to the last step. Now, lets go…

STEP1: Log on to your Blogger Dashboard click on Theme , then Edit HTML.


STEP2: Click anywhere in the code area and press ctrl+ F ,then search for this tag (Hit enter)
<data:post.body/>


Note: After hitting on enter you will find this code more than once, stop at the third one!

STEP3: Replace the code above with this one:
<b:if cond='data:blog.pageType != &quot;static_page&quot;'> <b:if cond='data:blog.pageType != &quot;item&quot;'> <div expr:id='&quot;summary&quot; + data:post.id'><data:post.body/></div> <script type='text/javascript'>createSummaryAndThumb(&quot;summary<data:post.id/>&quot;,&quot;<data:post.url/>&quot;,&quot;<data:post.title/>&quot;);</script>  <span class='readmore' style='float:right;'><a expr:href='data:post.url'>Read More &#187;</a></span></b:if></b:if> <b:if cond='data:blog.pageType == &quot;item&quot;'><data:post.body/></b:if> <b:if cond='data:blog.pageType == &quot;static_page&quot;'><data:post.body/></b:if>

Note: If you don’t see any changes after going through all the steps, replace the second <data:post.body/> tag as well!.

See this also: Reasons why search engines might have ignore your website.

STEP4: Now, search for the following tag:
</head>
STEP5: Just above the </head> tag, add the following script and css code:

<script type='text/javascript'>
posts_no_thumb_sum = 490;
posts_thumb_sum = 400;
img_thumb_height = 160;
img_thumb_width = 180;
</script>
<script type='text/javascript'>
//<![CDATA[
function removeHtmlTag(strx,chop){
if(strx.indexOf("<")!=-1)
{
var s = strx.split("<");
for(var i=0;i<s.length;i++){
if(s[i].indexOf(">")!=-1){
s[i] = s[i].substring(s[i].indexOf(">")+1,s[i].length);
}
}
strx = s.join("");
}
chop = (chop < strx.length-1) ? chop : strx.length-2;
while(strx.charAt(chop-1)!=' ' && strx.indexOf(' ',chop)!=-1) chop++;
strx = strx.substring(0,chop-1);
return strx+'...';
}
function createSummaryAndThumb(pID, pURL, pTITLE){
var div = document.getElementById(pID);
var imgtag = "";
var img = div.getElementsByTagName("img");
var summ = posts_no_thumb_sum;
if(img.length>=1) {
imgtag = '<span class="posts-thumb" style="float:left; margin-right: 10px;"><a href="'+ pURL +'" title="'+ pTITLE+'"><img src="'+img[0].src+'" width="'+img_thumb_width+'px" height="'+img_thumb_height+'px" /></a></span>';
summ = posts_thumb_sum;
}
var summary = imgtag + '<div>' + removeHtmlTag(div.innerHTML,summ) + '</div>';
div.innerHTML = summary;
}
//]]>
</script>
<b:if cond='data:blog.pageType != &quot;static_page&quot;'>
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<style type='text/css'>
.post-footer {display: none;}
.post {margin-bottom: 10px; border-bottom: 1px dotted #E6E6E6; padding-bottom: 20px;}
 .readmore a {text-decoration: none; }
</style>
</b:if>
</b:if>

Further customization:
*To change the number of characters shown when no thumbnail(image), change the 490 value in blue.
*To change the number of characters shown when there is a thumbnail(image), change the 400 value in blue.
*If you want larger thumbnails change the 160( height) and 180(width) values in red.

STEP6: Click on save theme, then you’re done!.

If this post was useful to you please do not hesitate to drop your comment. Also, if you are not able to do it successfully, we are interested in helping you through so please let us know by using the comment box below!

THANKS FOR VISITING DAMYTECHS BLOG!!!.

Enjoy!

Monday

Major Reasons Why Search Engines Might Have Been Ignoring Your Website

Major Reasons Why Search Engines Might Have Been Ignoring Your Website


There have been so many complains here and there especially from those that are newbie to blogging saying that Google and other search engines are not indexing their entire website though they submitted it week ago and so on... This is very true but i want you to know that nothing actually happens without a cause or reason.
You may be experiencing this due to all or some of the following reasons i have shortlisted below, checkout the one you are guilty of and make necessary corrections or changes.
They are listed as follows:


(1) Inability for search engines to read your web page content: 

Know this,that search engines do make use software programs to get your website/web pages indexed. A web page that looks so great to the eye can be totally “meaningless” to search engines, and may completely ignored.If you have a good looking web site that is “meaningless” to search engines, you will not be able to obtain high search engine rankings with that web site no matter how cool and interesting your web site content maybe. In general, search engines cannot detect your content which is presented in images (PNG, JPEG, GIF e.t.c.), Flash elements, JavaScript and other script languages or any other multimedia file formats.So now you need find out how search engines see your web page, use a search engine spider simulator. The free IBP trial has a fully functional spider simulator that gives you an opportunity to see your web pages through the eyes of a search engine.

(2) Check for “Noindex” in the Meta settings:If you add NOINDEX in your meta tag settings it means you do not want bots to indexed your website at all.

So, make sure they are not included in the tag and if included then remove it.


(3) Your web pages may contain spam elements:
If your site contains a unit of spam element it is capable of destroying all your SEO work. If you make use “hidden text” or other spam elements on your web page then many search engines will not list your web site, no matter how great its content might be.
If you use white text on a white background, text in invisible CSS elements or similar elements that might be interpreted as spam then you should remove these elements as soon as possible. It will be difficult to get high rankings if your web pages contain spam elements.

Only Submitting your web site to search engines is not just enough. If you want to get high rankings you must make sure that search engine spiders can access your web pages without problems.

Finally, make sure that search engine spiders finds out the right content on your web pages and your site must have enough inbound links.

Note: use the IBP program to help make your website more prominent on the search engines.

(4) Site de-indexation:

This literally means that search engines stop to index your website and even delete the ones that have been indexed afore time. This problem may be as a result of your website accommodating so many spam contents, regular changing of your url, publishing of fake articles and that are irrelevant.

(5) Copy/paste or contents:

I believe we all know what this means, you continue posting others person’s articles directly without acknowledging the real owner, and you expect your website to be indexed how will that work, i can assure you that if you continue that way your website will later get banned and you will loose your website and your work will turn to a waist.

If more than a URL on the same website are linking to multiple pages with the same contents then you may likely have a duplicate content issue affecting your site
So make sure all your contents are original or unique.
Find and delete all duplicates on your web site then you will see the changes on how search engines will start indexing your site.

Do well to click the share botton below and also i love to see your comments.


Thanks!

Thursday

Tips On How To Guest Post And How To Benefit From It

Tips On How To Guest Post And How To Benefit From It



Question: What is the meaning of guest posting?
Answer: From the word "guest" -meaning a visitor, so, guest posting simply means the act of creating and publishing relevant contents on another person's website.
Blogs are a very popular platform for guest posting. It's a good way to build an online reputation and for a company very famous. Not only will a company’s followers see its content when u post to another person's blog, but also anyone who follows the host blogger will see the company’s content as well, thus reaching an audience that might be unaware of your service or brand.

Importances Of Guest Posting

From what i just explained above , you should have now begin to draw out of what importance guest posting will be to you as a blogger.

Below are the listed importances:

  • 👉When you guest post, it makes you to have a wide range of access to new audiences by increasing the amount of people advertising the content.
  • 👉It builds your online authority when you have contents posted on other sites.
  • 👉It also establish a positive relationship with other companies and people that may be of help to us in terms of purchasing your products or request for your services.
  • 👉You will be easily seen on search engines thereby increasing your traffic and page rank.
Now that you've known what a guest post is and its importance, at this junction i want you to also know that there are some criteria to meet up with for your post to be accepted and you benefiting from it.

Things that you must consider before you write any guest post💖:


1. Analyze your area of interest:
This is one of the things that most writers fail to consider! Obviously everyone has expertise in specific domains. Choosing a topic on the field you are knowledgeable in will give an added advantage over other writers, and your content could easily attract numerous audience.

2. Be creative and new:
No website will accept copied content so, you write a fresh and new content that will hunt the interest of people. Don't worry if your article is of low quality you will be better as you continue to write.

3. Adhere to Their rules
Always read the rule and regulations of the site you wanna post to and make sure you abide by them so that your article will be accepted and published.

4. Keep it clean:
Try to make your work very simple and easy for people to be able to read and understand. Avoid using too much grammars and vocabularies.

5. Follow your readers:
After your written article have been accepted, make sure you respond to peoples comments as it will encourage them and build trust and relationship between you and the audience.

For your information, here at damytechs blog guest posting is allowed!.

I believe you have learnt so much, so it's now your turn to show us love💗 by clicking our share bottons below then drop your cemments. THANKS!!!!!!!😄😄😄😄
You Too Can  Be A Winner – @ZealmatAward2017

You Too Can Be A Winner – @ZealmatAward2017


Hello, my readers how have been your day so far, i belive you’ve been flexing it so well, ok good!.
It’s been long i posted here on this blog due to some reason’s which made me so busy, but now am back to feed yes! I mean “to feed” you with the juicy articles that you always love to read here on Damytechs blog.

I was surfing through the net today , then visit one of my favorite blog “ Zealmat blog ”. There, i saw a package, so i decide to share it with the dedicated readers of this blog.
What can this be ?....try guessing …. Oh! No, you can’t get it right. What exactly am bringing to your notice is known as “ZealmatAward2017”.
Zealmat Tech Blog
Zealmat blog is an outstanding tech blog in Nigeria that’s setup to give valuable & understanding tutorials to your knownledge. 

ZealmatAward – is a yearly prize-giving award brought to you by Zealmat blog( www.zealmat.com).
You can view the winner of this year’s award here.
So, for you as a blogger to be qualified for the next year’s award, there are some tasks you are expected to carry-out. See the criteria here.

After a successful completion of the task then see what you stand to enjoy below:  

*You will receive a certificate and cash of ₦3,000 or a domain  name. Then, 
*You will be giving the opportunity to advertise your blog/site for free. Also,
*You will have an access to a free website banner or logo designed for you and lots more…..

Wow this is so amazing, cant wait to be a winner..lolz. What are you still waiting for. Get started now.

Note: this offer is for a limited time and it will last till the 10th of Jan. 2017.
This might be your chance.

#TAKE CHARGE OF YOUR OPPORTUNITY NOW!!!
If you still wish to make further enquiries then click here.

Make sure you comment and subscribe to our daily update so that you can receive updates on other awards and scholarship programs. 

   Thanks for reading this article!


Tuesday

Crucial Things You Must Know Before You Create A Blog [Part One]

Crucial Things You Must Know Before You Create A Blog [Part One]

According to wikipedia, a blog is a discussion or informational website published on the World Wide Web(www) consisting of discrete, often informal diary-style text entries ("posts").
Now a days you find so many blog on net- either a personal blog or blog focused on profession acceleration.

In the last few years blogging has grown so greatly. Presently, there are blogs for almost everything on earth such as losing weight, fitness, DIY gardening(do it yourself) , learning a new language, advancing a career, or even making money online. As blogging developes, so are the anticipations of readers and standards required of bloggers.

Not all blogs are created equally - Some lack focus while others lack purpose.
When you are just starting out a new blog, you should really think of  how you can make it a successful one?

It is unfortunate that so many people jump on the blogging trend not taking their time to familiarize themselves with the basis or fundamentals of blogging and how to use it for online lead generation, and these group of persons do not go very far because of two main reasons. First, is that they fail to understand their roles, and secondly, they don’t meet the anticipations of their audience or readers.
Now, for you to avoid any such scenario or occurrence or experience that is why i have written these article, here, you will know the fundamental things should consider before creating your blog.

Especially those that are asking me, i want you to carefully go through what i have in stock for you.

1. What’s the Purpose of Your Blog?

WHY BLOG?  …………Do you create it just because others have a blog or your all friends all have their own blogs ? - You shoud know the clear purpose or aim of creating your blog.

There are numerous types of blogs and reasons for blogging, from networking to building brand authority, expanding your reach online, growing a business, providing oneself a creative outlet, and many more.
One of the benefit is that allot of people uses it as a platform to make great cash(money)  – if not turning their blog into a full-time revenue stream.
Blogs can directly earn income by monetizing them. In most cases, people monetize their blog by taking on advertisements.
But the purpose of your blog should be tied to your objectives and goals and it should be realistic.

Do not expect to get positive results immediately when you start blogging. when you realize the impact that your blog is going to have on an audience then, you can only achieve the desired results.  The bottom line is that you should have a purpose that will help you engage and inspire your readers or audience excellently.
While others create blogs for pleasure, others create blogs to educate and inform their target audience.

2. Your Target Audience

At the time you decided to set up a blog, you should already have in mind the audience that will access and read your blog. Do not just assume that everybody that comes across your blog will read it.
The only set of people that will read your blog posts are the people who obtain value from the information that you publish and share.  So increase the productivity of your blogging, by researching more about your audience, know their; (i) preferences, (ii) concerns, (iii) expectations, (iv) needs, and (v)their interests, by making this research it will guide you when writing posts for your blog.
Do not think/assume that what you’re going to publish will tick with your audience- you have to know your audience first,so that you can target them with the relevant content.

You might have missed this: Major Reasons Why Search Engines Might Have Been Ignoring Your Website

3. Nature of Blog Content

You also need to decide ahead of time the kind of content(post) that you want to create and publish in your blog. Your purpose is your best guiding post as far as content creation is concerned.  If you want to create a blog so as to educate your audience then you should have more focus on informative/enlightening posts. And on the other and, if you want to involve your audience in prompt reactions, then you should focus more on trending topics and issues.

You might have missed this: 90+ Dofollow Commentluv Enabled Blog List.
Some readers are pleased or happy they are reading a very posts, while others may love reading lengthy and thought motivating posts – in the same vein, others persons may prefer online video marketing resources like training videos.
Whichever content and style you choose to make use of, a balance of contents will do you more and great good.

So Finally, it all depends on who you are targeting and what you want to achieve from your blog.


As seen from the topic of this post - this is the first part of this aricle. To really understand everything precept by precept and digest it, i divided it into parts.
So, always check back for the second part of this tutorial when it will be posted so that you will not miss anything.
You can also Follow Us On Page | Group - Twitter - Google+
Hey, i greatly believe you’ve learnt one thing or the other from this article ,show us some love by sharing this post on your social media walls.

Friday

90+ Dofollow Commentluv Enabled Blog List

90+ Dofollow Commentluv Enabled Blog List

Hello good afternoon guys, today i will be giving out bundle of high PR (page rank) and CommentLuv Enabled Dofollow blog lists.

Leaving your site link on CommentLuv enabled site is one of the most populous and best way of getting two Dofollow backlinks at a time to your site/blog.
I believe you all know the importance of having a dofollow backlinks, so if you do not know, they are:

  1. It will help in getting a higher rank in search engines such as google, yahoo, bing e.t.c.
  2. It will increase your daily traffic to your site.
  3. By doing so you also build relationship with other bloggers.
Let's go straight to the lists. 
http://www.blogengage.com/blogger/
http://www.weblogbetter.com/
http://www.nickstraffictricks.com/
http://www.kaiserthesage.com/
http://www.smartbloggerz.com/
http://www.quickblogtips.com/
http://www.smallusbflashdrive.com/
http://www.probloggingsuccess.com/
http://www.itechcode.com/
 http://www.onenaijablog.com/
http://www.blogging.co.in
http://www.geekandblogger.com/
http://www.famousbloggers.net/blog
http://www.kikolani.com
http://www.growmap.com/
http://www.blondish.net/
http://www.blogengage.com/blogger/
http://www.weblogbetter.com/
http://www.shermansmithblog.com/
http://www.enstinemuki.com/
http://www.davidmerrill101.com/
http://www.bloggingjunction.com/
http://www.techblaster.net/
http://www.technshare.com/
http://www.bloggingwithoutablog.com/
http://www.superbloggingtips.com/
http://www.hotblogtips.com/
http://www.oddblogger.com/
http://www.blogelina.com/
http://www.blogstash.com/
http://www.moneyearningmethods.net/
http://www.getpaidtowriteonline.com/
http://www.geekdashboard.com/
http://www.webmaster-success.com/
http://www.hackerpapa.com/
http://www.inspiredtowrite.com/
http://www.techpatio.com/
http://www.wonderoftech.com/
http://www.zapworld.in/
http://www.seoallrounder.com/
http://www.technikant.com/
http://www.azblogtips.com/
http://www.tech4world.net/
http://www.techchunks.com/
http://www.earningguys.com/
http://www.collegefallout.com/
http://www.crunchynow.com/
http://www.moneyctl.com/
http://www.thenextgoal.com/
http://www.makemoneymax.com/
http://www.webincomejournal.com/
http://www.innovativepassiveincome.com/
http://www.learnblogtips.com/
http://www.techclickr.com/
http://www.kuchjano.com/
http://www.favouritehobbies.com/
http://www.technobol.com/
http://www.thedroidclub.com/
http://www.bloggingcage.com/
http://www.tip2tricks.com/
http://www.exceptnothing.com/
http://www.mymagicmix.com/
http://www.woblogger.com/
http://cybernaira.com/
http://justwebsitetraffic.com/
http://www.bestofguru.net/
http://www.30mistakes.in
http://www.seowonderworld.com/
http://www.bloggingsprout.com
https://www.kathleenaherne.com/
http://www.unlikelymartha.com
http://www.hindiloveshayaris.in
http://thevisuallife.net/
http://maryanngarson.com/
http://www.pakmax.net/
http://theprofitblogger.xyz/
http://techandtweet.in/
http://www.trickyenough.com/
http://www.techcloud.in
http://www.myquickidea.com/
https://www.psnama.net
http://www.startwithclick.com/
http://www.trafficcrow.com/



Make sure you drop your comment before logging out.
If your blog also has commentLuv enabled or if you found out new ones
 you can also drop your link using the comment box below. THANKS.

Tuesday

How To Add Facebook Like Button To Blogger Posts

How To Add Facebook Like Button To Blogger Posts

Today in this tutorial i will teach you how can go about about adding a facebook like button beneath your blog posts. By using this botton, you as a blogger will be able to know how interesting, effective, understanding or great your post is to your readers when the articlesare liked. I will be giving out different styles of like bottons it now depends on the one you want to add to your blog.There are only two steps to get this done ,so let’s start with the fisrt step.

 First step : You will install a javascript into your blogger template so that the facebook social plugin will work.

HOW TO:
  • Click on Edit HTML, when it opens search for <body> tag by using CTRL+F.
  • Paste the code below immediately below <body>.

<div id="fb-root">
<script>
  window.fbAsyncInit = function() {
    FB.init({
      appId      : '1065595340222456',
      xfbml      : true,
      version    : 'v2.7'
    });
  };

  (function(d, s, id){
     var js, fjs = d.getElementsByTagName(s)[0];
     if (d.getElementById(id)) {return;}
     js = d.createElement(s); js.id = id;
     js.src = "//connect.facebook.net/en_US/sdk.js";
     fjs.parentNode.insertBefore(js, fjs);
   }(document, 'script', 'facebook-jssdk'));
</script>

NOTE: If you have such code below the <body> tag before, you don’t need to add it again..so ignore this first step and go to the second step.


Second step : Here we are going to add the like botton so as to display underneath your blog posts.

As i told you earlier before now  that i will give out different styles of like bottons ,i have four different types with me you can choose anyone at your wish.


LIKE BOTTONS WITH DIFFERENT STYLES:

(1) BOX COUNT:
 <b:if cond='data:blog.pageType == &quot;item&quot;'>
<iframe allowTransparency='true' expr:src='&quot;http://www.facebook.com/plugins/like.php?href=&quot; + data:post.canonicalUrl + &quot;&amp;send=false&amp;layout=box_count&amp;show_faces=false&amp;width=55&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=62&quot;' frameborder='0' scrolling='no' style='border:none; overflow:hidden; width:90px; height:65px;'/> </b:if> 

(2) BUTTON COUNT:
 http://www.safetricks.com/wp-content/uploads/2013/07/facebook-like-button-count.png
<b:if cond='data:blog.pageType == &quot;item&quot;'>
<iframe allowTransparency='true' expr:src='&quot;http://www.facebook.com/plugins/like.php?href=&quot; + data:post.canonicalUrl + &quot;&amp;send=false&amp;layout=button_count&amp;show_faces=false&amp;width=90&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=21&quot;' frameborder='0' scrolling='no' style='border:none; overflow:hidden; width:90px; height:21px;'/> </b:if>

(3) STANDARD:
http://www.safetricks.com/wp-content/uploads/2013/07/facebook-like-button-standard.png
 <b:if cond='data:blog.pageType == &quot;item&quot;'
<iframe allowTransparency='true' expr:src='&quot;http://www.facebook.com/plugins/like.php?href=&quot; + data:post.canonicalUrl + &quot;&amp;send=false&amp;layout=standard&amp;show_faces=false&amp;width=450&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=35&quot;' frameborder='0' scrolling='no' style='border:none; overflow:hidden; width:450px; height:35px;'/> </b:if>

(4) BUTTON:
 <b:if cond='data:blog.pageType == &quot;item&quot;'>
 <iframe allowTransparency='true' expr:src='&quot;http://www.facebook.com/plugins/like.php?href=&quot; + data:post.canonicalUrl + &quot;&amp;send=false&amp;layout=button&amp;show_faces=false&amp;width=90&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=21&quot;' frameborder='0' scrolling='no' style='border:none; overflow:hidden; width:90px; height:21px;'/> </b:if>
Third step :
  •      Again click on Edit HTML in your blogger template, after opening, search for <data:post.body/> using CTRL+ F.
  •      If you find more than one <data:post.body/> choose the one that appear second.
  •      Copy any one of the 4 codes styles your want and paste it immediately below <data:post.body/>
NOTE : If after adding the code to the second <data:post.body/>  it does not show then try adding it below the third <data:post.body/>
I hope i have helped you in knowing how to add facebook like botton to blogger posts with ease. It’s  now you turn to do us good by sharing this post and also drop your comments.

Friday

Complete Guide On How To Migrate Your Blog From Blogger To WordPress

Complete Guide On How To Migrate Your Blog From Blogger To WordPress



Am bringing to you today a complete guide on how you can move your blog from Blogger blogspot  to WordPress without losing any traffic and SEO.
Before we commence the migration , here are the list of our goals:
     (1)  Retaining traffic and your google page rank.
     (2)To import all posts, comments and pages to WordPress.
     (3)Retaining all feed subscribers, posts Facebook likes and Tweets.
   (4)  Maintaining permalinks for posts & pages i.e. 1-on-1 mapping between Blogger.com and WordPress pages.
Now that our goals are clearly , the next thing is to understand the differences between having a Blogger.com blog on a subdomain and on a custom-domain;

See the two different cases here:

(1) Blog with a subdomain address – e.g. http://yoursite.blogspot.com
(2) Blog with a custom domain address – e.g. http://yoursite.com
If your blog is using a subdomain address, it might be a bit difficult achieving all the four goals set above. So for the subdomain case, the best solution is to – setup custom domain on Blogger.com to be able to achieve all the goals.

Now let us start migration… at this point, I believe you have:
     >>  Your blog on Blogger has a custom domain address.
     >>  You have a webhosting where you can install WordPress.
     >>  Finally, you can access your domain’s DNS records.
     Blogger to WordPress Migration Begins
1. First, Set your DNS entries to point to your hosting account and Install WordPress. You can easily install WordPress by making use of the auto installer on your cPanel. Login to your cPanel and locate WordPress one-click installer provided by your web host.
2. Enter WordPress Dashboard, go to Settings -> Permalinks and select Custom Structure option and paste the following value next to it and save changes.
/%year%/%monthnum%/%postname%.html
Note: The aim of doing this is to make your WordPress blog’s permalink structure have the same looks as Blogger.

3. Now we want to import all your Blogger posts to WordPress. To achieve this, go to Tools > Import options and select Blogger options. A pop-up box will appear, click on Install Plugin to install the importer plugin in WordPress

4. Just click on Activate Plugin & Run Importer. You will be asked to grant access to your google account. Click on Grant Access and you may be prompted to login to your google account if you’re not already signed in.

5. After you granting it access, you will be lead back to Blogger importer on WordPress. So if you have more than one blog on your Blogger account, you will see all of them listed here. Just click on the import button next to the blog that you want to import into WordPress.
6. Once you click import, all posts and comments from Blogger.com blog start importing into WordPress. Importer may stop in between. In that case, the text on the button will change from Import to Continue just keep clicking on it, until the button-text changes to Set Authors, which indicates all posts and comments have been imported successfully.
I want you to note that WordPress Importer does not import the pages from your Blogger.com blog, soyou have to do this manually.
At this point, your Blogger.com blog is completely imported. But wait, your images hosted on Blogger’s server are still on there so do not delete your Blogger.com blog.
Fixing Permalinks
In step 2 above, I mentioned that the WordPress permalinks should be configured to look like Blogger permalinks. Now, we need to make both look identical to keep traffic, SEO and achieve our goals.
Look at the WordPress post link below:
http://www.damytechs.com/2016/09/welcome-to-wordpress-this-is-your-first-post-edit-or-delete-it-then-start-blogging.html
And the following blogger.com post link for the same post:
http://www.damytechs.com/2016/09/welcome-to-wordpress-this-is-your-first.html
Both permalinks have the same structure but the slug is different and we must make it look exactly like it was on blogger in order to make search traffic point to that very blog post inorder to avoid your visitors getting Error 404 (Not Found).
Copy the code below to a notepador or any wordeditor and save it as blogger.php
<?phprequire_once('wp-load.php');$res = $wpdb->get_results("SELECT post_id, meta_value FROM $wpdb->postmeta WHERE meta_key = 'blogger_permalink'");$wpdb->print_error();foreach ($res as $row){$slug = explode("/",$row->meta_value);$slug = explode(".",$slug[3]);$wpdb->query("UPDATE $wpdb->posts SET post_name ='" . $slug[0] . "' WHERE ID = $row->post_id");$wpdb->print_error();}echo "DONE";?>
Now upload this to your public_html or the folder in which your wordpress blog is installed., and run the script like this: http://your-blog.com/blogger.php
On running this script, the only output you must see is “DONE”. At this point, check the post links on your WordPress blog. Their path part must now be identical to Blogger.com post link…ok!!
Moving Your Blogger Feed Subscribers Over To WordPress
 If you are using Feedburner, update source feed URL as it will be changed during the migration. Just use the .htaccess hack below to fix URL of your feed.
Now add following lines at the top of your .htaccess file which can be found in root directory of your WordPress installation.
#ATOM FeedsRewriteRule atom.xml feed/atom/ [L,R=301]RewriteRule feeds/posts/default feed/atom/ [L,R=301]#RSS FEEDSRewriteRule feeds/posts/default?alt=rss feed/ [L,R=301]RewriteRule rss.xml feed/ [L,R=301]#Comments FeedRewriteRule /feeds/comments/default  comments/feed/  [L,R=301]RewriteRule /feeds/comments/default?alt=rss comments/feed/  [L,R=301]
OR You can simply add new WordPress feed URL, inside blogger dashboard -> Settings -> Site Feed under Post Feed Redirect URL and then click on Save Settings.
Handling Your Blogger labels/archive pages
After you are done with the whole installation, your blogger labels/archive pages will be  automatically redirected to your WordPress 404 page. To avoid this, add the following code into the .htaccess file:
#Redirect archivesRewriteRule ^([0-9]{4})_([0-9]{1,2})_([0-9]{1,2})_archive.html$ $1/$2/ [L,R=301]#Redirect labels/categoriesRewriteRule ^search/label/(.*)$ category/$1/ [L,R=301]
Removing Your Old blogspot Site from Google Index
Like I told you earlier that you should never delete your Blogger blog because your images are still hosted on blogger. Now, in other to avoid duplicate contents and google penalty, you must remove your blogspot site from google index by pasting the code below in the head section of your blog.
<meta content='NOINDEX, NOFOLLOW' name='ROBOTS'/>
And that is all!!!!!!!!!!.....

You can get huge traffic from the site  by CLICKING HERE
PLEASE MAKE SURE YOU FOLLOW EACH STEP CAREFULLY AS ANY MISTAKE MADE WILL NOT YIELD TO YOU YOUR EXPECTED RESULTS!!

LEAVE YOUR COMMENTS BELOW AND REMEMBER THAT SHARING IS CARING……..SO DO WELL BY USING OUR SHARE BOTTONS BELLOW.THANKS!!!!