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

January 28, 2011

Great Trick for increase website traffic

Questions
How to increase traffic on my blogger posts?
Increase traffic with change of title.
Choose the best title for your posts.
How to increase weblog traffics with simple and useful solution?

Solution
It's a great, simple and more useful and unique solution for SEO and I’ll guaranty the result it.
1- Go to Google Analytics
2- Go to Content
3- Go to Top Content
4- Chose a top content (or post) form Content combo box
5- Find out a new hot title for this post based of useful keyword which most visitors search about it.
6- Go to your weblog and change your title of that content (or post)
7- And take enjoy

Example (scenario):
1- I have a post from 2005/11 (link) and it's a very useful post for our visitors
2- The title of this post was "connect to the localhost"
3- I follow top solution and find out half of my visitors of this page, comes from Google with "connect to localhost" instead of "connect to the localhost"
4- I changed the title and increase traffic on this post.

January 17, 2011

How to change post titles in blogger for SEO

- Best SEO for blogger
- How to change title blogger posts for SEO?
- How to change title of all posts for SEO?
- Change the title of each post for best SEO in blogger.
- Change the title of each post for best SEO in blogspot.
- Optimize post title for SEO on Blogger/Blogspot.
- What's a blogger SEO optimization solution.

Story
After passing a week of my hottest post i googled my topic's title (exact title with copy/paste) and foud it in page 3 and it made me upset but after a careful look i saw the title of my page that was
    Software Developer: How to install Android on Windows
and that wasn't SEO Friendly like below at least.


Before SEO

After SEO
Solution
change the 
<title><data:blog.pageTitle/></title>
to
<b:if cond='data:blog.pageType == "item"'>
    <title><data:blog.pageName/> - <data:blog.title/></title> 
<b:else/> 
    <title><data:blog.pageTitle/></title> 
</b:if>


Solution (In details)
1- Go to your Blogger.com
2- Go to your Dashboard of your weblog
3- Go to Template
4- Find and click on Edit HTML button
5- Press Ctrl+F and find below line
<title><data:blog.pageTitle/></title>
6- Replace it with below
<b:if cond='data:blog.pageType == "item"'>
        <title><data:blog.pageName/> - <data:blog.title/></title> 
    <b:else/> 
        <title><data:blog.pageTitle/></title> 
    </b:if>
7- Press the Save Template button and Close
8- Enjoy :-D

January 05, 2011

How to post a Source Code in Blogger or Website

- Source Code on Blogger
- Source code plugin for blog
- Source code plugin for blogspot
- The best source code posting
- How to add source code to my blogspot post
- How to add HTML code to Blogger (blogspot.com)
- What's the best solution for post a source code in my weblog?


Best Solution:
If did you want to post source code snippets in your weblog on Blogger (blogspot) or any weblog services like WordPress or your website, SyntaxHighlighter is the best solution. There are another solution like below but the human readability is first important and i think that with SyntaxHighlighter you can kill two birds with one stone. It solves your problem for make a page with look nice source code and very human/developer readable, trust me, It comes from an old developer man:-D

All Solutions:
1- SyntaxHighlighter: SyntaxHighlighter is a fully functional self-contained code syntax highlighter developed in JavaScript.
link: http://alexgorbatchev.com/SyntaxHighlighter/
used by: Apache, Aptana, Mozilla, Yahoo, Wordpress, Bug Labs, Freshbooks and others.
demo: http://alexgorbatchev.com/SyntaxHighlighter/manual/demo
version: 3.0.83
Integration: http://alexgorbatchev.com/SyntaxHighlighter/integration.html
syntax:
<pre class="brush: css">##YOUR CSS CODE##</pre>
<pre class="brush: csharp">##YOUR C#(C-SHARP) CODE##</pre>

2- WordPress Source Code Plugin: Wordpress have created a shortcode which you can wrap around source code that preserves its formatting and even provides syntax highlighting for certain languages just with a simple wrap like below. It's same SyntaxHighlighter with same developer ;-)
link: http://en.support.wordpress.com/code/posting-source-code/
syntax:
[sourcecode language="css"]your code here[/sourcecode]

3- Google Code Prettify: Its offer a JavaScript module and CSS file too.
link: http://code.google.com/p/google-code-prettify
syntax:
<pre class="prettyprint">your code</pre>