Showing posts with label blogger. Show all posts
Showing posts with label blogger. Show all posts

Thursday, April 8, 2010

How to add Related posts to your Blogger post ?




To add Related posts to your Blogger post, that is beneath or under
every post in your blogspot or blogger blog, you are able to do this in 2
minutes, its simple code paste it in your blogger.

first, login into your blog which you want to add and Related posts to, select layout, then edite Edit HTML in your
Blogger Dashboard.

then, Back up your Template before making any change!

Make sure to check "Expand Widget Templates"

all the steps are found in this text:


Make sure to check "Expand Widget Templates"

then Search for the 1111 tag.

Add this code just before the 2222 tag.

3333



Now search for 44444 . In some of the templates this code may look like this

5555

or

6666

Add the following code just beneath the code you just searched for.



7777

Now Save your Template and you're done!


all the the above numbers is codes and are found in this file :
http://members.multimania.co.uk/widgetb/codes.rar

Thursday, March 18, 2010

Creating copy of your blog made easy !




Its very easy to create copy or copies of your blog, so if you have wordpress blog, you can create copy of it on blogger, and the so.
here you will see tut to create copy of your blogspot blog on wordpress, with self hosted.
follow the following steps:

1. Login to your Blogger account.

1. In Dashboard, go to your Settings > Basic > Blog Tools > Export Blog.





2. When you click ” Download Blog”, you get prompt to download an blogger XML file. Save it to your hard disk.

It would be something like : blog-MM-DD-YYYY.XML

3. Visit this site : Blogger2Wordpress Conversion Utility

4. Browse the .xml file that you exported from Blogger and click Convert. It’ll save as a .xml file as wordpress-wxr.XML.

5. ***IMPORTANT – Browse to where you downloaded the file and RENAME THE EXTENSION AS A .WXR FILE***. The work do be done in Blogger part is now over.

6. Login to your Wordpress account

go to Tools > Import > Wordpress.

7. Now you have your blog backed up for Wordpress. Don’t do anything with the Blogger/Blogspot blog now.

8. When you switch the domains and update the DNS, the blog should work fine at wordpress but for the permalink structure.

9. The main difference between the permalink of Blogger/Blogspot and Wordpress is that:

i. Articles like “the”, “a”, and “an” are skipped in the url in Blogger/blogspot while wordpress maintains it.

ii. The url of Blogge/?Blogspot blog is truncated and restricted while in Wordpress it is much bigger. How big? I dont know. I haven’t seen any of my post urls truncated till now.

iii. By default the Wordpress url would be something like:

www.domain.com/?p=123

The Blogger/Blogspot url would be like:

http://www.domain.com/YYYY/MM/postname.html

10. The first thing we should do is to make the permalink structure same beofre going to further levels.

Goto “Permalinks” in your WordPress dashboard




Select -> Custom structure.

Input ->

/%year%/%monthnum%/%postname%.html

and save it.

Now, your Wordpress blog will also have the permalink structure as:

http://www.domain.com/YYYY/MM/postname.html

11. To make it exactly similar to Blogger/Blogspot url sans the truncation effect and stuffs,

add the following code to the top of your .htaccess file which can be found in root directory of your wordpress installation.


RewriteEngine On
RewriteBase /
RewriteRule ^([0-9]{4})/([0-9]{1,2})/([^/]+)\.html$ $1/$2/$3/ [QSA,R=301,L]

We are done.

so, we can say : Creating cpy of your blog made easy !