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!