Sanjay Choubey

  • Home
  • Services
    • SEO
    • PPC
    • SMO
    • SEO Niche
      • Education SEO
      • Dental SEO
  • SEO Packages
  • About
  • Blog
  • Results
  • Reviews
  • Contact

Remove subscribe to posts(atom) from Blogspot/blogger

September 11, 2013 By Sanjay Choubey Leave a Comment

We see the option of subscribe to posts(atom) in the bottom section of a blogger blog. It helps for the users to easily subscribe to the feeds. Majority of Bloggers dislike it since after removal this option Blog looks more attractive. so if you want to remove this option from your blog just do any of one method from below.

Must Read :  How to disable right click in Blogger
Method 1 : 
  • Go to Blogger Dashboard
  • Click on template
  • Click on customize
  • Click on advanced and then choose add css
  • Paste the following code in the white box and then click on apply to Blog.
  • .feed-links { display:none !important; }
  • you are done.!!

If you are having any issue with this step you can do in another way also :
Don’t Miss : write codes in html box in Blogspot blog

    Method 2 : 
    • Go to Blogger dashboard and select your blog
    • Click on template ( I will recommend you to download your template before proceeding)
    • Now click on edit html
    • press ctrl+f and find the code ]]></b:skin>
    • Now place the following code just before/above ]]></b:skin>
    • .feed-links { display:none !important; }
    • Now click on save.
    • All done.! Enjoy…….

    Filed Under: Blogger tips, SEO

    Invite all your friends to Like any facebook page on a single click

    September 6, 2013 By Sanjay Choubey Leave a Comment

    Hello all, M back with a new post that might be helpful for you. Social sites are playing special role for the popularity of a website. I am sure every site has a facebook fan page. Also some times you get a facebook page quite interesting and you wanna invite your friends, but the main problem is you don’t wish to invite your all friends one by one. and of course it will be harder to invite so many friends in that way. Today we will learn how to invite all fb friends for a facebook page with a single click.

    You might read : Facebook like box for Blogger

    Steps :
    • Open any of facebook page for which you wanna invite your friends
    • see there is an option to invite friends in the right side click on see all
    • Now change the drop down menu from “recent interactions” to “search all friends“

    • scroll the scroller and move it from top to button
    • Then press CTRL+SHIFT+J (For Google Chrome, press Ctrl+shift+k for firfox)
    • you will see there is an option of console click on that and paste the following code and then press enter

    var inputs = document.getElementsByTagName("input");
    for (var i=0; i < inputs.length; i++) {
    if (inputs[i].getAttribute('type') == 'checkbox') {
    inputs[i].click();
    }
    }
    • you will see all your friends to whom you have not invited to like ur page in past, are selected now you just need to click on submit button as shown in above figure. A request to like your page will be submitted to all your friends.

    All done.!!! If you still facing any problem please let me know in the comment section. thank u for being here. have a great day.

    Filed Under: facebook tips, SEO, social sites

    Difference between Do follow and No follow Links

    August 15, 2013 By Sanjay Choubey 11 Comments

    As we are aware of the point that every website needs a large number of back links for the good ranking in search result. It is a challenging job for an seo to make good number of do follow back links from high page rank sites. I mentioned here links as do follow . are you aware of it ? ok let me explain: This article will help you to clearly understand the basic difference between dofollow and nofollow backlinks for a website.
    There are two types of inbound and outbound links namely :

    1. Do follow links
    2. No follow links

    Do follow Links :

    Do follow links are the most important backlinks for the seo point of view. These links help the website for making backlinks. as search engines come to the link, crawl it and and they count it  as backlink. this method is the most popular method to enhance the page rank.  search engines come and crawl all the keywords, Images,other things and then goes to the link if the link is found do follow then search engine’s crawler will follow the link and land on the other webpage.
    The basic example of Do follow link is as follow :
     <a href=”https://sanjaychoubey.com/”>Blogger tips and tricks</a>

    Some Points for  Do follow Links :

    • Website gets more comments
    • Attracts more visitors from the other website
    • Website gets more popularity day by day
    • Better for seo point of view for enhancing the page rank
    • You will Get Lots of Spammy Comments for your website
    • Takes a Lot of Time to Moderate All of The Comments.

    No follow Links :

    No follow links are the links which is not followed and crawled by the search engine’s crawler. these links are ignored by the crawlers. to make a link no follow we use rel=”nofollow” attribute in the link structure. These links are not for search engines to crawl and not to influence the rank of a blog or website in the search engines.
    The basic example of No follow link is as follow :
     <a href=”https://sanjaychoubey.com/” rel=”no follow”>Blogger tips and tricks</a>
     
    Some Points for No follow Links :
     
    • Spammers will not spam on your blog
    • Less time required to moderate comments
    • only genuine and interested visitors will post comments.
    • Fewer amounts of total comments as visitors will not prefer to comment on your site as the link will be no follow.
    Read : How to disable right click in Blogger
     

    Filed Under: Blogger tips, SEO

    Disable right click in Blogger

    August 14, 2013 By Sanjay Choubey 8 Comments

    I think every blogger faces a problem regarding copying of contents. Many of the online users visit the site  and so the chance of copying the content remains open. so one should disable the option of right click in the blog so that one can’t select and copy the content.
    Also read : Linkwithin related posts for Blogger
    You can do the steps in blogger so that right click will not work and hence one can’t do copy – paste in the blogger. It is important to activate in a blogspot blog beacuse some  Bloggers do many efforts by researching and then writing a great article for their website, whereas some body just visit the website and does copy and paste article for his blog or website. so to prevent this we need to deactivate the right click in the blogspot blog as we see many websites donot allow right click.

    How to Disable the right click :

    • Go to Blogger Dashboard
    • Click on layout and then after Click on add a gadget
    • Select add a html/javascript widget
    • Paste the following code in the body section and leave the upper portion i mean title as blank
    • Click on save and check in your blog, right click is not working.
    <script language=javascript>

    var message=”Function Disabled!”;

    ///////////////////////////////////
    function clickIE4(){
    if (event.button==2){
    alert(message);
    return false;
    }
    }

    function clickNS4(e){
    if (document.layers||document.getElementById&&!document.all){
    if (e.which==2||e.which==3){
    alert(message);
    return false;
    }
    }
    }

    if (document.layers){
    document.captureEvents(Event.MOUSEDOWN);
    document.onmousedown=clickNS4;
    }
    else if (document.all&&!document.getElementById){
    document.onmousedown=clickIE4;
    }

    document.oncontextmenu=new Function(“alert(message);return false”)

    //
    </script>

     

     

    Filed Under: Blogger tips, SEO

    Create stylish and cute facebook like box for Blogger/WordPress

    August 2, 2013 By Sanjay Choubey 14 Comments

    All we need to place a beautiful facebook like box in our blog so that one can easily like the page and get connected with your blog posts. Recently i have posted an article regarding how to add facebook official like box in Blogger. Although this widget is widely used and also its an official like box so many of bloggers recommend it. But some times it does not suit with the template and we need a good looking widget which can enhance the overall Blog beauty.

    facebook like box for blogger
    stylish facebook likebox for Blogger

    Why to choose this widget ?

    • Simple coding with better Look.
    • Flexible in size, means one can easily customize the size by increasing or decreasing length and width.
    • Easy installation process

    How to Install :

    • Go to Blogger Dashboard
    • Click on Layout
    • Click on Add a Gadget
    • Select Html/Javascript
    • Place the following code and then after click on save
    <style>
    .facebookOuter {
    width: 270px;
    height: 150px;
    border-radius: 3px;
    position: relative;
    background-color:#f4f4f4;
    padding:5px 10px 15px 0;
    }
    .facebookOuter, .facebookOuter:before, .facebookOuter:after {
    background: #f4f4f4;
    border: 1px solid #ccc;
    }
    .facebookOuter:before, .facebookOuter:after {
    content: “”;
    position: absolute;
    bottom: -3px;
    left: 2px;
    right: 2px;
    height: 1px;
    border-top: none;
    }
    .facebookOuter:after {
    left: 4px;
    right: 4px;
    bottom: -5px;
    box-shadow: 0 0 2px #ccc;
    }
    .facebookInner {
    height:155px;
    overflow:hidden;
    }
    </style>

    <div class=”facebookOuter” style=”float:left;”>
    <div class=”facebookInner”>
    <div class=”fb-like-box”
    data-width=”300″ data-height=”179″
    data-href=”http://www.facebook.com/a1bloggerseo”
    data-border-color=”#F4F4F4″ data-show-faces=”true”
    data-stream=”false” data-header=”false”>
    </div>
    </div>
    </div>
    <div id=”fb-root”></div>
    <script>(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/all.js#xfbml=1”;
    fjs.parentNode.insertBefore(js, fjs);
    }(document, ‘script’, ‘facebook-jssdk’));
    </script>

    • Change http://www.facebook.com/a1bloggerseo with your facebook page url.
    • You are done . Feel free to drop a comment if you like this widget or you having any issue.

    Know How to install this Facebook widget in wordpress.

    Filed Under: Blogger gadgets, Blogger tips, Blogger widgets Tagged With: facebook widget for Blogger

    • « Previous Page
    • 1
    • …
    • 26
    • 27
    • 28
    • 29
    • 30
    • …
    • 36
    • Next Page »

    Locations I Serve

    Delhi | Noida | Gurugram | Ghaziabad | Faridabad | Chennai | Patna | Mumbai | Bangalore | Hyderabad | Kolkata | Pune | Jaipur | Lucknow | Chandigarh | Bhopal | Indore | Nagpur | Ahmedabad | Vadodara | Rajkot | Coimbatore | Kochi | Trivandrum | Ranchi | Bhubaneswar | Guwahati | Vishakhapatnam | Vijayawada | Mysore | Mangalore | Ludhiana | Amritsar | Jalandhar | Dehradun | Meerut | Kanpur | Varanasi | Prayagraj | Agra | Gwalior | Jabalpur | Raipur | Bilaspur | Durg-Bhilai | Jamshedpur | Dhanbad | Siliguri | Shimla | Srinagar | Jammu | Goa | Rishikesh | Greater Noida | Surat

    Copyright @ Sanjay Choubey
    WhatsApp Call Now