Showing posts with label Tutorial. Show all posts
Showing posts with label Tutorial. Show all posts

How To Easily Install SEO Smart Links in Blog

SEO Smart Links in Blog
My Backlink - In this article my backlink will be sharing plugin SEO Smart Links & which is a WordPress plugin that works to change every word specified in an article be a link.

How to Work Smart SEO Plugin Link This plugin will read every word pal specified in the article. For example if my friend added the word SEO or Blogger in the plugin, then every word will be automatically turned into a link if at all in your blog article contained the word.

How to Install SEO Smart Links

Open Blogger > Template > Then add the following code before the</body>

<script type='text/javascript'>
function smartLink(){
    this.keywdHref = new Object();
    this.add = function(keyword, href){
        if(keyword.substr(0,1) != &quot; &quot;){keyword = &quot; &quot; + keyword;}
        this.keywdHref[keyword] =  href;
    }
    this.createAnchor = function(){
        var objs = document.getElementsByTagName(&quot;div&quot;);
        for(var i=0; i&lt;objs.length; i++){
            var obj = objs[i];
            if(obj.className.indexOf(&quot;post-body&quot;)&gt;-1){
                var content = obj.innerHTML;
                for(var keyword in this.keywdHref){
                    var href = this.keywdHref[keyword];
                    var newstr = content.replace(keyword, &quot;&lt;a href=&#39;&quot;+href+&quot;&#39;&gt;&quot;+keyword+&quot;&lt;/a&gt;&quot;, &quot;gi&quot;);
                    obj.innerHTML = newstr;
                    content = newstr;
                }
            }
        }
    }
    this.startScript = function(){
        var onLoad = window.onload;
        window.onload = function(){
            if(onLoad){onLoad();}
            setTimeout(&quot;f.createAnchor()&quot;, 100);
        }
    }
}
</script>
<script type='text/javascript'>
var f = new smartLink();
f.add(&quot;SEO&quot;, &quot;https://mybacklinks86.blogspot.com/&quot;);
f.startScript();
</script>


If you want the plugin above only appear on post pages only, please add a special conditional tags post page.

Save template

In the code that is marked with SEO by keywords pal specify and change https://mybacklinks86.blogspot.com/ with the url of your blog.


In the above code buddy can add more keywords below, as an example

f.add(&quot;SEO&quot;, &quot;https://mybacklinks86.blogspot.com/&quot;); f.add(&quot;Template&quot;, &quot;https://mybacklinks86.blogspot.com/&quot;); f.add(&quot;Blogger&quot;, &quot;https://mybacklinks86.blogspot.com/&quot;);

Buddy can also add words into bold, for example.

f.add(&quot;&lt;b&gt;SEO&lt;/b&gt;&quot;, &quot;https://mybacklinks86.blogspot.com/&quot;);

Note

It is advisable to use three keywords is enough.
LEARN MORE

How to Make Your Own URL Shortener with JavaScript in Blogger

How to Make Your Own URL Shortener with JavaScript

MyBacklink86 - How to Make Your Own URL Shortener with My Backlink, JavaScript - In this post I tried to create its own URL shortener using JavaScript code. If before me and you used to use bit.ly, goo.gl and the like, now I am and you will create its own URL shortener. The script that I can share is also called a URL Redirect. URL Redirection or transfer permalink actually been facilitated by a blogger, only limited on our blog, can not lead to other blogs.

If the existing CMS WordPress plugin "Simple URLs", the result will be something like with it, because I was also inspired by this plugin. If my friend do not know, maybe my friend never seen such links http://mybacklink86.blogspot.com/go/fb more or less like the picture. To be more clear, please click the Facebook My Backlink 86 below:

 https://your-link.blogspot.com/go/fb

To make it, save the code above </head> .

Example One

<script language='javascript'>
//<![CDATA[
var key = window.location.href.split("go/")[1].replace("/","")
var urls={
'fb':'https://www.facebook.com/mybacklink86,
'gplus':"https://plus.google.com/+xxxxxx",
'twitter':"https://twitter.com/xxxxxxx",
'blabla':"http://xxxxx.com/",
'blabla':"http://blabla.net",
'blabla':"http://www.blabla.com",
'blabla':"https://www.blabla.us" /* the latter without coma */
}
if(key){
if(urls[key]){
window.location.href=urls[key]
}else{
document.write("'"+key+"' not found :(");
}
}
//]]>
</script>

Example Two

<script language='javascript'>
//<![CDATA[
var key = window.location.href.split("go/")[1].replace("/","")
var urls={
'fb':'https://www.facebook.com/mybacklink86,
'gplus':"https://plus.google.com/+xxxxxx",
'twitter':"https://twitter.com/xxxxxxx",
'blabla':"http://www.blabla.com",
'blabla':"https://www.blabla.us" /* the latter without coma */
}
if(key){
if(urls[key]){
window.location.href=urls[key]
}else{
document.write("'"+key+"' not found :(");
}
}
//]]>
</script>

Example Three

<script language='javascript'>
//<![CDATA[
var key = window.location.href.split("go/")[1].replace("/","")
var urls={
'fb':'https://www.facebook.com/mybacklink86,
'gplus':"https://plus.google.com/+xxxxxx",
'twitter':"https://twitter.com/xxxxxxx" /* the latter without coma */
}
if(key){
if(urls[key]){
window.location.href=urls[key]
}else{ document.write("'"+key+"' not found :(");
}
}
//]]>
</script>

Change / add the link as desired mate. To understand it, when I wrote 'fb':'https://www.facebook.com/mybacklink86' means, when accessing http://your-link.blogspot.com/go/fb will lead to https://www.facebook.com/mybacklink86.
LEARN MORE

How to Make the Anti Copy Paste Except certain parts of Blogger

don't not copy paste

Live Demo Here

MY BACKLINK - How to Make the Anti Copy Paste Except certain parts of Blogger. Have your Blog Copas by others? if ever what you feel? surely you would be annoyed and angry, we are tired - tired of writing by hand until kinky, eh not him someone else is reading your blog copy and paste the link source without.

One way to minimize the blog post so as not to copy and paste is to install script or css anti Copas blog you, but this is not suitable for you, if your blog about the tutorial, because the blog tutorial there are some code like css, html, javacript and others - others who must be able to copy and paste someone else. Oh yes anti copy and paste this script does not use javascript but using css, so it does not affect the loading of your blog.

How to Make the Anti Copy Paste Except certain parts of Blogger.

  1. Log in to blogger account.
  2. Log into the template editor (Edit HTML).
  3. Then put the anti Copas css code below the above code ]]></b:skin>.

  4. 
    .post-outer {
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -khtml-user-select:none;
    -ms-user-select:none;
    -moz-user-select:none;
    }
    


  • Then so that later we can make certain parts can copy and paste, then we have to add the code below in the section & blockquote, pre and code.
  • The trick pairs css below the above code ]]></b:skin>.

    
    .post blockquote,.post pre,.post code{
      -webkit-touch-callout:text;
      -webkit-user-select:text;
      -khtml-user-select:text;
      -ms-user-select:text;
      -moz-user-select:text;
    }
    


  • The last step Save the template and see the results.

  • Now you can make your blog is safe from the copaser. If certain parts of your blog can copy and paste, then you've succeeded in implementing trick Easy Ways to Make Blog Not Be in Copas Unless Specified Part.

    Hope it is useful
    LEARN MORE

    How To Make Youtube Videos Autoplay in blog

    youtube autoplay on blog

    MY BACKLINK - Hello guys, in the following trick is a youtube video to be installed or included on our blog, and the video will automatically rotate automatically (autoplay) when we opened the pages of our blog visitors. Video sample below my take on youtube. I chose the video track "I'm With You - Avril Lavigne | Cover by Keesamus" as an example tutorial, because I like the song and Keesamus.

    Live Demo Here


    How To Make Youtube Videos Autoplay in blog.

    Okay, now we begin to discuss the tutorial.

    Here's how:


    1.First you must take the first on youtube embed code.

    2. Open the YouTube video you want to put on the blog. Video should you play or you turn off. Up to you.

    3. Note the below video. Please click Share or Share, and then click Pin or Embed. See the picture below.

    Youtube Videos Autoplay


    4. After that please copy the embed code that appears there. See picture on the blue background.

    5. Paste embed code / embedded this code in notepad. Then add the code: ?rel=0&amp;autoplay=1

    The results will be as follows:

    
    <iframe width="500" height="350" src="https://www.youtube.com/embed/5fUpc8tGNy4?rel=0&amp;autoplay=1" frameborder="0" allowfullscreen></iframe>
    

    Note:
    500 is high and the 350 is the width of the video. Please adjust the height and width of her YouTube videos. <
    LEARN MORE

    How to Make Text Walking in Blog

    How to Make Text Walking in Blog

    How to Make Text Walking in Blog - Ever not you see the writing / text - paced sector in the blog? I think you must have seen it, the kind of writing such a marquee name, the actual function merely as decoration on the blog alone, almost the same as headline news, only that it is easier ngaturnya, especially in regulating the movement / behavior in the desired text. You are interested in making the running in the blog posts, please consider the following ways.

    1. Login to blogger.
    2. Click Layout >> Add a Gadget >> HTML/JavaScript(If you want to display on your blog widget).
    3. Click save and see the results.

    How to Make Walking in Blog Posts


    1. The text moves from right to left

    <marquee direction="left" scrollamount="2" align="center">MY BACKLINK 86</marquee>

    The result

    MY BACKLINK 86


    2. The text moves from left to right

    <marquee direction="right" scrollamount="2" align="center">MY BACKLINK 86</marquee>

    The result

    MY BACKLINK 86


    3. The text moves back and forth from left to right

    <marquee direction="left" scrollamount="2" align="center" behavior="alternate">MY BACKLINK 86</marquee>

    The result

    MY BACKLINK 86


    4. The text moves back and forth from right to left

    <marquee direction="right" scrollamount="2" align="center" behavior="alternate">MY BACKLINK 86</marquee>

    The result

    MY BACKLINK 86


    5. The text moves from top to bottom

    <marquee direction="down" scrollamount="2" align="center">MY BACKLINK 86</marquee>

    The result

    MY BACKLINK 86


    6. The text moves from bottom to top

    <marquee direction="up" scrollamount="2" align="center">MY BACKLINK 86</marquee>

    The result

    MY BACKLINK 86


    7. The text moves back and forth from top to bottom

    <marquee direction="up" scrollamount="2" align="center" behavior="alternate">MY BACKLINK 86</marquee>

    The result

    MY BACKLINK 86


    8. Text moving zig - zag (diagonal) bounces

    <center><marquee direction="up" scrollamount="2" align="center" behavior="alternate" width="90%"><marquee direction="right" behavior="alternate"> MY BACKLINK 86</marquee></marquee></center>

    The result

    MY BACKLINK 86


    9. Text moving zig - zag (diagonal) translucent

    <center><marquee direction="up" scrollamount="2" align="center" behavior="alternate" width="90%"><marquee direction="right">MY BACKLINK 86</marquee></marquee></center>

    The result

    MY BACKLINK 86


    Note:
    • Direction: to regulate the movement patterns of text (left, right, up and down).
    • Scrollamount: to regulate the speed of movement of the text. Raise the numbers (from 2 to 3) to accelerate the movement and vice versa.
    • Behavior (scroll / slide / alternate): to set the movement behavior.
    LEARN MORE

    How to display widget only on certain pages in the blog

    This time My Backlink 86 discusses how to display the widget on a particular page on the blog as the main page / post pages and other pages.

    Blogger Widget
    illustration


    Its function is to save space of your blog page as well as to speed up the loading blog besides your blog page is neat and professional look for the management of your blog.

    This method is quite easy just to add some code, by adding the code then you can display the widget you want to appear on the page just as you want it.

    Well without a lot of strings attached and practice you can see the code below:


    1. Displays widgets only on page Archive alone.

    <b:if cond='data:blog.pageType == &quot;archive&quot;'>
    ......................................................
    </b:if>


    2. View the widget on all pages except the archive page.

    <b:if cond='data:blog.pageType != &quot;archive&quot;'>
    ......................................................
    </b:if>



    3. Displays widgets only on post pages.

    <b:if cond='data:blog.pageType == &quot;item&quot;'>
    ......................................................
    </b:if>


    4. View the widget on all pages, except the post page.

    <b:if cond='data:blog.pageType != &quot;item&quot;'>
    ......................................................
    </b:if>


    5. Displays widgets only on certain posts.

    <b:if cond='data:blog.pageType == &quot;address-posts&quot;'>
    ......................................................
    </b:if>


    6. View the widget in addition to the specific post.

    <b:if cond='data:blog.pageType != &quot;address-posts&quot;'>
    ......................................................
    </b:if>


    7. Displays widgets only on page staticpages.

    <b:if cond='data:blog.pageType == &quot;static_page&quot;'>
    ......................................................
    </b:if>


    8. Displaying a widget on all pages, except staticpages page.

    <b:if cond='data:blog.pageType != &quot;static_page&quot;'>
    ......................................................
    </b:if>


    9. Code widget displays only the particular url.

    <b:if cond='data:blog.url == "URL page here"'>
    ......................................................
    </b:if>


    Note: Signs point - the point above is the widget code that must be in place.

    Examples of applicability can do on an existing widget on your blog, for example, you only want to display the widget "Popular Posts" only appear on any item, then the following steps:

    Example: popular posts widget code below:

    <b:widget id='HTML4' locked='false' title='Popular posts' type='HTML'> <b:includable id='main'>
    <b:if cond='data:blog.pageType == &quot;item&quot;'>
    <!-- only display title if it's non-empty -->
    <b:if cond='data:title != &quot;&quot;'>
    <h2 class='title'><data:title/></h2>
    </b:if>
    <div class='widget-content'>
    <data:content/>
    </div>
    <b:include name='quickedit'/>
    </b:if>
    </b:includable>
    </b:widget>
    LEARN MORE

    How To Change the List Bullet Image in Blogger

    List Bullet Image in Blogger

    One of the steps that you can do to beautify your blog or to beautify your blog posts is by replacing Bullet Bullet Point List or your default template.


    How To Change the List Bullet Image in Blogger

    1. Login to blogger.com
    2. In the drop down menu, select a template
    3. Click the Customize button
    4. You will be taken to a page Blogger Template Designer
    5. Click Advanced and select Add CSS

       6. Copy Paste the following code in column Add CSS.

    .post ul li { list-style-image:url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEinJi32xLs8DaMqi9aOtBcnhzEbmv0USIFcm40JZ2q8eW7E7rDhtoHG5og-0VW3vn2RhZOuoC4SJZxizz93uTSK-gq-jqI3MAGw1i551YjzOj1bJ4zUbc3Odj6JMBSzyvk1IZMFCBQ7Z4s/s1600/star_bullet.png'); }

    List Bullet Image in Blogger

       7. Finally click the Apply to Blog

    Reload your blog to see the results. CSS code above will display the List Bullet like the picture above.

    LEARN MORE