twitter
    Find out what I'm doing, Follow Me :)
Showing posts with label Changing words. Show all posts
Showing posts with label Changing words. Show all posts

Changing Author's Name

Above your every post , you will see your name ( or the Author's name ).It will always display your Blogger accounts name , But you can change it ! You can use a name of your own as you want to. You can use a cool name as 'Heaven writer' , 'Fun Man' or even 'Unknown'.






For that,

1. Edit your template ( How to edit your template )
2. Press 'Ctrl' key and 'F' and Find '
data:post.author '


Now you will find some code lines simillar to


<span class='post-author'>
<b:if cond='data:top.showAuthor'>
<data:top.authorLabel/> <data:post.author/>
</b:if>


<data:post.author/> , This stands for your name.

Use what ever you like to use

Ex:-

<span class='post-author'>
<b:if cond='data:top.showAuthor'>
<data:top.authorLabel/> The Heaven's Poster
</b:if>

If you want to remove the word '
Posted by '

remove the line
<data:top.authorLabel/>

Now you will get your code lines as

<span class='post-author'>
<b:if cond='data:top.showAuthor'>
The Heaven's Poster
</b:if>


Now follow the Safety Saving Steps.

And

Changing the word ' Labels '

You may have seen the name Labels and bunch of labels that you have given to your post , below or above your post.Don't you feel that it is classic and common ? So , what about a name like My Topics , Categories or some thing like that ?







For that ,


1. Edit your template ( How to edit your template )
2. Press 'Ctrl' key and 'F' and Find out
data:postLabelsLabel


Now you will find some code lines similar to

<span class='post-labels'>
<b:if cond='data:post.labels'>
<data:postLabelsLabel/>
<b:loop values='data:post.labels' var='label'>
<a expr:href='data:label.url' rel='tag'>


<data:postLabelsLabel/> , This line stands for the word 'Labels'. Change this word to any thing you like to

ex-

<span class='post-labels'>
<b:if cond='data:post.labels'>
Topics
<b:loop values='data:post.labels' var='label'>
<a expr:href='data:label.url' rel='tag'>



Now follow the Safety Saving Steps.

And

Changing word 'Comments'

Below you every post , there is a counter for comments.It will indicates number of comments you have. Rather than the classical word ' Comments ' , don't you like to use an another word like ' You Ideas ' , ' What do you think ' or some thing like that ?




For that ,


1. Edit your template ( How to edit your template )
2. Press 'Ctrl' key and 'F' and Find out
data:top.commentLabel

Now you will find some code lines similar to

<b:if cond='data:post.allowComments'>
<a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><b:if cond='data:post.numComments == 1'>1 <data:top.commentLabel/> <b:else/><data:post.numComments/> <data:top.commentLabelPlural/> </b:if></a>
</b:if>
</b:if>
</span>


<data:top.commentLabel/> means the word ' comment '
<data:top.commentLabelPlural/> means the word ' comments '


Now , change these pair of code lines to what ever you like

ex:-


<b:if cond='data:post.allowComments'>
<a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><b:if cond='data:post.numComments == 1'>1 Your Great Idea <b:else/><data:post.numComments/> Your Greate Ideas </b:if></a>
</b:if>
</b:if>
</span>


Now follow the Safety Saving Steps.

And