text allan

COMPUTER REPAIR,CCTV CAMERA Remote Configuration and Port Forwarding,WEBSITE DESIGN and INTERNET CAFE SET-UP call SUN +63 0932-1712155 or GLOBE +63-0917 8358251

Friday, November 8, 2013

How to Remove Blog Name from Title on Blogger

Remove Blog Name from Title on Blogger


It is very easy to hide your blog title on Blogger. You just need to do a simple edit on your template (Design->Edit HTML on Blogger)

Then you find
<title><data:blog.pageTitle/></title>

And replace it with:
<b:if cond='data:blog.pageType == "index"'>
<title><data:blog.title/></title>
<b:else/>
<title><data:blog.pageName/></title>
</b:if>

If you want to post your blog in any social network like Facebook that will appear your post title before your blog title kindly follow the below steps :D

Add Post Title Before Blog Title for Better Search Engine Rankings


Here is a detailed step by step procedure of how to add post title before the blog title:

1. Login to blogger account.2. Move on to Dashboard.3. Click on "Design" tab.4. Click on "Edit HTML" tab.5. At the top of your template you should see a code similar to this below.
<head>

<b:include data='blog' name='all-head-content'/>
<title><data:blog.pageTitle/></title>

6. Replace the red line with this code below.

<b:if cond='data:blog.pageType == &quot;index&quot;'>
<title><data:blog.pageTitle/></title>
<b:else/>
<title><data:blog.pageName/> | <data:blog.title/></title>
</b:if>
You can change that blue line to any thing you want. Some people prefer the (~), (@), (-), (|), (#), etc symbol over the simple line (|).

Woo! After your done and all you have to do is to wait on the search engine to pick it up it might take a week or so.


Hope this will help and works also in your Blogs site..Cheers!


Allan Pogi