81 Numbered Page Navigation for Blogger
Tuesday, August 12, 2008 /

The ability to 'paginate' Blogger blogs has been a long requested feature. Pagination allows us to number blog pages like those of a book, offering readers the ability to navigate deeper into the archives with ease when compared to the 'newer' and 'older' post links.



After many failed attempts, I was almost ready to admit defeat with this function until I discovered this excellent script by Mohamed of Blogger Accessories. This script replaces the default blog pager (links to newer, older and home pages) with numbered page navigation. Furthermore, it offers the ability to customize the number of page links and the number of posts displayed on each page.





Mohamed's Blogger pagination script may be installed using two different methods:

Both of these installation methods will achieve a similar effect. I personally find adding the code directly to the template makes it easier to customize the style of the pagination links, but if you feel uncomfortable editing your template, the widget installation may be much easier for you.



Here is how the finished installation will appear in your blog:





Once installed, these "page numbers" will appear on your home, archive and labels pages, allowing your readers to easily access pages in your archives. However, the page numbers will not appear on individual post pages. I've noticed many blogs which use pagination like this, and among them none displayed these page links beneath individual posts.



To learn more about using the numbered pagination script for Blogger, pop over to Blogger Accessories to read the useful tutorials Mohamed has posted.





My Slightly Modified Version

As you may have noticed, I'm using a slightly modified version of this script here on Blogger Buster. When customizing the style of Mohamed's original version, I noticed a few elements which I preferred to change for my own preferences, and also modified the CSS for how the numbered links are displayed.





If you would prefer to use this slightly different version instead, here is what you should do.





Add the CSS code to your style section

Firstly, copy all of the code below and paste this just before the closing </b:skin> tag in your template:







.showpageArea a {
text-decoration:underline;
}
.showpageNum a {
text-decoration:none;
border: 1px solid #ccc;
margin:0 3px;
padding:3px;
}
.showpageNum a:hover {
border: 1px solid #ccc;
background-color:#ccc;
}
.showpagePoint {
color:#333;
text-decoration:none;
border: 1px solid #ccc;
background: #ccc;
margin:0 3px;
padding:3px;
}
.showpageOf {
text-decoration:none;
padding:3px;
margin: 0 3px 0 0;
}
.showpage a {
text-decoration:none;
border: 1px solid #ccc;
padding:3px;
}
.showpage a:hover {
text-decoration:none;
}
.showpageNum a:link,.showpage a:link {
text-decoration:none;
color:#333;
}
This should change the colors of text and links in the pagination to match the styles already present in your blog template. So if your default text is white against a dark background, the "Pages (#)" section of the script should appear the same way. The color for the background and hover effects of the numbers can be altered according to your preferences by editing the hex values to match the style of your own template.

Add the JavaScript code beneath your posts

The second part of the installation is to add the JavaScript code beneath your posts which will locate and replace the existing "Newer/Older Posts" link. To add this script, go to Layout>Edit HTML in your Blogger dashboard, and do not tick the "expand widget templates" box (it's much easier to add the code while the widgets are contracted). Then find this section of code (or similar) in your template:

<b:section class='main' id='main' showaddelement='yes'> <b:widget id='Blog1' locked='false' title='Blog Posts' type='Blog'/> </b:section>
Immediately after the closing </b:section> tag, add the following section of code:





&lt;script type=&quot;text/javascript&quot;&gt;



function showpageCount(json) {

var thisUrl = location.href;

var htmlMap = new Array();

var isFirstPage = thisUrl.substring(thisUrl.length-5,thisUrl.length)==&quot;.com/&quot;;

var isLablePage = thisUrl.indexOf(&quot;/search/label/&quot;)!=-1;

var isPage = thisUrl.indexOf(&quot;/search?updated&quot;)!=-1;

var thisLable = isLablePage ? thisUrl.substr(thisUrl.indexOf(&quot;/search/label/&quot;)+14,thisUrl.length) : &quot;&quot;;

thisLable = thisLable.indexOf(&quot;?&quot;)!=-1 ? thisLable.substr(0,thisLable.indexOf(&quot;?&quot;)) : thisLable;

var thisNum = 1;

var postNum=1;

var itemCount = 0;

var fFlag = 0;

var eFlag = 0;

var html= &#39;&#39;;

var upPageHtml =&#39;&#39;;

var downPageHtml =&#39;&#39;;



var pageCount = 5;

var displayPageNum = 5;

var upPageWord = &#39;Previous&#39;;

var downPageWord = &#39;Next&#39;;







var labelHtml = &#39;&lt;span class=&quot;showpageNum&quot;&gt;&lt;a href=&quot;/search/label/&#39;+thisLable+&#39;?&amp;max-results=&#39;+pageCount+&#39;&quot;&gt;&#39;;



for(var i=0, post; post = json.feed.entry[i]; i++) {

var timestamp = post.published.$t.substr(0,10);

var title = post.title.$t;

if(isLablePage){

if(title!=&#39;&#39;){

if(post.category){

for(var c=0, post_category; post_category = post.category[c]; c++) {

if(encodeURIComponent(post_category.term)==thisLable){

if(itemCount==0 || (itemCount % pageCount ==(pageCount-1))){

if(thisUrl.indexOf(timestamp)!=-1 ){

thisNum = postNum;

}



postNum++;

htmlMap[htmlMap.length] = &#39;/search/label/&#39;+thisLable+&#39;?updated-max=&#39;+timestamp+&#39;T00%3A00%3A00%2B08%3A00&amp;max-results=&#39;+pageCount;

}

}

}

}//end if(post.category){



itemCount++;

}



}else{

if(title!=&#39;&#39;){

if(itemCount==0 || (itemCount % pageCount ==(pageCount-1))){

if(thisUrl.indexOf(timestamp)!=-1 ){

thisNum = postNum;

}



if(title!=&#39;&#39;) postNum++;

htmlMap[htmlMap.length] = &#39;/search?updated-max=&#39;+timestamp+&#39;T00%3A00%3A00%2B08%3A00&amp;max-results=&#39;+pageCount;

}

}

itemCount++;

}

}



for(var p =0;p&lt; htmlMap.length;p++){

if(p&gt;=(thisNum-displayPageNum-1) &amp;&amp; p&lt;(thisNum+displayPageNum)){

if(fFlag ==0 &amp;&amp; p == thisNum-2){

if(thisNum==2){

if(isLablePage){

upPageHtml = labelHtml + upPageWord +&#39;&lt;/a&gt;&lt;/span&gt;&#39;;

}else{

upPageHtml = &#39;&lt;span class=&quot;showpage&quot;&gt;&lt;a href=&quot;/&quot;&gt;&#39;+ upPageWord +&#39;&lt;/a&gt;&lt;/span&gt;&#39;;

}

}else{

upPageHtml = &#39;&lt;span class=&quot;showpage&quot;&gt;&lt;a href=&quot;&#39;+htmlMap[p]+&#39;&quot;&gt;&#39;+ upPageWord +&#39;&lt;/a&gt;&lt;/span&gt;&#39;;

}



fFlag++;

}



if(p==(thisNum-1)){

html += &#39;&lt;span class=&quot;showpagePoint&quot;&gt;&#39;+thisNum+&#39;&lt;/span&gt;&#39;;

}else{

if(p==0){

if(isLablePage){

html = labelHtml+&#39;1&lt;/a&gt;&lt;/span&gt;&#39;;

}else{

html += &#39;&lt;span class=&quot;showpageNum&quot;&gt;&lt;a href=&quot;/&quot;&gt;1&lt;/a&gt;&lt;/span&gt;&#39;;

}

}else{

html += &#39;&lt;span class=&quot;showpageNum&quot;&gt;&lt;a href=&quot;&#39;+htmlMap[p]+&#39;&quot;&gt;&#39;+ (p+1) +&#39;&lt;/a&gt;&lt;/span&gt;&#39;;

}

}



if(eFlag ==0 &amp;&amp; p == thisNum){

downPageHtml = &#39;&lt;span class=&quot;showpage&quot;&gt; &lt;a href=&quot;&#39;+htmlMap[p]+&#39;&quot;&gt;&#39;+ downPageWord +&#39;&lt;/a&gt;&lt;/span&gt;&#39;;

eFlag++;

}

}//end if(p&gt;=(thisNum-displayPageNum-1) &amp;&amp; p&lt;(thisNum+displayPageNum)){

}//end for(var p =0;p&lt; htmlMap.length;p++){



if(thisNum&gt;1){

if(!isLablePage){

html = &#39;&#39;+upPageHtml+&#39; &#39;+html +&#39; &#39;;

}else{

html = &#39;&#39;+upPageHtml+&#39; &#39;+html +&#39; &#39;;

}

}



html = &#39;&lt;div class=&quot;showpageArea&quot;&gt;&lt;span style=&quot;COLOR: #000;&quot; class=&quot;showpageOf&quot;&gt; Pages (&#39;+(postNum-1)+&#39;)&lt;/span&gt;&#39;+html;



if(thisNum&lt;(postNum-1)){

html += downPageHtml;



}



if(postNum==1) postNum++;

html += &#39;&lt;/div&gt;&#39;;



if(isPage || isFirstPage || isLablePage){

var pageArea = document.getElementsByName(&quot;pageArea&quot;);

var blogPager = document.getElementById(&quot;blog-pager&quot;);



if(postNum &lt;= 2){

html =&#39;&#39;;

}



for(var p =0;p&lt; pageArea.length;p++){

pageArea[p].innerHTML = html;

}



if(pageArea&amp;&amp;pageArea.length&gt;0){

html =&#39;&#39;;

}



if(blogPager){

blogPager.innerHTML = html;

}

}



}

&lt;/script&gt;



&lt;script src=&quot;/feeds/posts/summary?alt=json-in-script&amp;callback=showpageCount&amp;max-results=99999&quot;; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;




Once you have added this code, attempt to preview your template to ensure there are no code errors. You will not be able to see the script in action on the preview, but this step ensures no adverse effects to your layout.



In the code above, you will notice that I have highlighted three sections of code in bold red. You may need to customize these sections to better suit your preferences:



On line 5, you may need to change the ".com" to reflect your domain extention if you use a custom domain.



var isFirstPage = thisUrl.substring(thisUrl.length-5,thisUrl.length)==&quot;.com/&quot;;


This default installation should work fine for anyone hosted on Blog*Spot or a dot.com domain, but you will need to alter this section if your custom domain ends in .co.uk or .info for example.



In lines 19 and 20, you can change these values to alter how many posts are displayed on each page, and how many links will be visible at the same time.



The var pageCount = 5; section defiines the number of posts displayed on each page, while var displayPageNum = 5; defines the number of links which are displayed (eg: 1 - 2 - 3 - 4 - 5) beneath the posts section.



Once you have added this JavaScript code and made any changes nescessary for your needs, save your template and open up your blog in your browser. Now you should see the pagination links appear beneath your main posts section, and also on Labels and Archive pages.





Your thoughts?

I hope this post has helped you learn about how numbered page navigation can be achieved in Blogger powered blogs using Mohamed's original methods or my slightly modified script.



Please let me know what you think of these methods, or if you experience any problems, by leaving your comments below.



81 comments:

February 6, 2009 at 12:49 PM Andy said...

wow, very good, I tried Blogger Accessories's version, but it didn't work too well for some reason, I decided to give it another try and I found your site....I've installed it at moviesgateway.com, it looked great thanks!!!

February 7, 2009 at 4:09 AM Avinashtech said...

Thanx amanda,

This one worked. Before trying your version i have tried the original hack (both types)but they didn't worked and then i tried yours.It worked..... Thanx..

February 8, 2009 at 6:43 AM Admin said...

good blog but i have a problem i am having domain .co.cc as yojhakas.co.cc it shows page number but do not restrict posts in any label

February 8, 2009 at 8:42 AM Brad Farless said...

Looks nice, but doesn't work. It was skipping posts, and it wasn't working on the labels page.

February 11, 2009 at 5:52 AM vuluganck said...

It has a problem when click " jump page"
for example , i click 4 it will jump to 7.

And 1st load my blog , it did not appear the page bar at last, when I click "Older Post" , the page bar appear.
So much faults , please fix it, my blog is: http://www.zenware.blogspot.com

February 23, 2009 at 3:07 AM MaevaStudio said...

got the same problem whit missing posts in page2, page elements/post is 5 just as var count, hope the scrpt can be fixed, becouse i realy like it, thanks anyway

February 23, 2009 at 6:39 AM The Good Car Guy said...

Awesome. Works great on www.GoodCarBadCar.net - a lifesaver that should help with pages/visit.

February 27, 2009 at 6:54 AM msn nickleri said...

çok güzel ellerine sağlık buster:) thank you.

February 28, 2009 at 12:10 PM
proj said...

I think the problem with missing posts, is because it is skipping Even Numbered Pages.

When I click page 2, it goes to page 3. When I click page 4, it goes to page 5..etc.

Has anyone found a fix to the page navigation..
Also, mine looks a bit funny on Internet Explorer. v7

Take a look. www.moviewatcherz.com
Thanks

March 2, 2009 at 12:12 AM rahul s nair said...

works like a charm.. thanks again Amanda...
I had done this long back.. but forgot to put in the Hi.. THANKSSSS

March 2, 2009 at 12:14 AM rahul s nair said...

works like a charm.. thanks again Amanda...
I had done this long back.. but forgot to put in the thanks.. THANKSSSS

March 6, 2009 at 2:50 PM mmaluđak said...

Thank you Amanda, I love you.

March 6, 2009 at 8:16 PM WokkingMum said...

Hi Amanda!
It didn't work for me.
Could you help me, please?
It's installed in http://hotfromthewok.blogspot.com
Thanks!

March 20, 2009 at 1:45 PM Cynthia said...

Hey Amanda...any idea why it doesn't show up on my front page? Looks wonderful on all other pages, but doesn't show on the front...Thoughts?
www.napwarden.com

March 21, 2009 at 12:56 AM blakmag said...

thanx Bro. its working fine
thanx a lot
keep it up

March 21, 2009 at 12:22 PM Teungku said...

bro, what you said about this,..
i'm really don't understand how to make it easily,..

March 23, 2009 at 4:40 PM Mohammed said...

Does not seem to work on the minima template

March 23, 2009 at 9:58 PM inAm said...

hey Amanda ! its not working for me too :(

March 25, 2009 at 10:47 PM Sajjad said...

Hi Amanda

How are you?

I install the "Continue here" on my blog, its great and unbelievable for me to put it, but you make it and its great working. If you want to see it. www.articles-homebiz.blogspot.com.

Thats too nice of you.

I have some problem my another thing

I install the Numbering but they are making problems. When I press page no 2 button it goes to 4 or 5, but bringing the contents are of page 2. Only numbers are missing going forward. Please check it and suggest me what to do.

I also want to align all my post to page center. My template was 2 columns right and left and I want my post to center to make my both columns a little visible, because the right column is hide due to posts left alignment.

In last I want to change my blog header picture and header writing "Entertainment for you", so please suggest me an amaizing style according to my blog style (you will know a me from your blog, so suggest me according to that) and The footer has a blue line and has no space, I want to add disclaimer to my blog and the statcounter in the last, but when I add them, they come in front on the ad.

Amanda Its so nice of you guiding and making good thing. Please help me.

www.movieslinks4you.blogspot.com

Take care
Thanks

March 26, 2009 at 11:18 AM Sujay said...

Hi Amanda Plz help I have tried a lot but its hust not working for my blog....

http://www.mypikc.blogspot.com

March 28, 2009 at 12:29 PM
Robot Nine said...

Amanda,
Lots of good stuff here but this pagination CSS has some serious bugs. On my site Robot Nine, like many others when you click on page two the displayed pages is number 3 and shows posts several postings further down the line, eg. In other words, I have 2 posts on homepage, 2 on each page. Click opage two and you see posts number 8 and 9 rather than 3 and 4. I suspect it it the var timestamp = post.published.$t.substr(0,10); line and have tried various adjustments without success. Changing the variable from 10 makes every page display the home page. It is unfortunate that Mohamed and yourself seem to have stopped answering posts about this code. I will leave it on for a short while maybe, but readers e-mail complaining. Any ideas or suggestions.
Alan
RobotNine(@)GMail.com

March 29, 2009 at 2:36 PM Doctor said...

not working
amanda i think you should fix some bugs in this code including missing posts and jumping posts

i think posts with no dates don't appear

please fix it for us we need this hack so much.

thx alot

April 1, 2009 at 9:59 AM WEST NYC said...

I'm getting the following error error:

Your template could not be parsed as it is not well-formed. Please make sure all XML elements are closed properly.
XML error message: The reference to entity "max-results" must end with the ';' delimiter.

April 3, 2009 at 7:12 AM Swanie said...

Thanks a lot Amanda and Mohamed. I combined both of your tricks and it's working really well. For those of you who are having problems with missing posts, you should make sure "var pageCount = " is same as the value you set in the dashboard settings.

April 3, 2009 at 3:23 PM Arif Luqman Nadhirin said...

Thank you very much Amanda... your post is very help me... And it's very nice to know your blog :)

April 4, 2009 at 2:04 AM Only Messages said...

I agree that this code is not working. I used it too. Please post a new code.

April 7, 2009 at 12:44 PM Orange Constellation Pathfinders said...

This is great!!! Thank you so much for this trick!

April 9, 2009 at 8:53 AM
Christina said...

Hey,
Thank you, It works great.

Only thing is it does come up on the first page, it still has the "older posts" link. This is only on the first page. Is this by design or did i stuff it up. I am just wondering.

Again thanks.
It rocks! You rock!

Chris
DelayClimax.info

April 20, 2009 at 5:04 AM Raja said...

Is it possible to get the page navigation hack with the same image showing on the top. I want to implement that on my blog
http://tamilposters.blogspot.com

April 24, 2009 at 1:21 PM NathanKP said...

I figured out that the problems with missing posts or repeated posts have to do with posting multiple posts per day.

The code appears to rely on post timestamps, and if you post two posts on one day, it doesn't recognize this fact. So if the two posts on one day end up spanning two pagination pages, then it repeats the posts and leaves out one other post.

Unfortunately, I think that this is a problem that can't be fixed, but I may look into it. There has got to be a better way to select the posts other than by date.

Nathan - Inkweaver Review

April 24, 2009 at 4:12 PM NathanKP said...

Amanda, I found the bugs in the code and fixed them.

The first bug had to do with the way timestamps were handled. Mohamed chopped off the hour and minute part of the timestamp. As a result the pagination feature worked for users who only post once a day, but if they posted more than once a day it made the timestamp selection inaccurate.

The second bug had to do with viewing by labels. The increment for the item counter was inside the wrong if structure and so the timestamp selected for the pagination link was highly inaccurate.

I fixed both these issues on my blog:

Inkweaver ReviewIf you want I can give you a new, bug-free copy (please use my contact form), or you can just grab the code off my blog. Just view the HTML. You'll have to remove a few extra statements that I added at the start of the function.

At any rate, please let your readers know about this fix.

April 26, 2009 at 6:05 AM Maroof said...

hey u share nice trick

April 26, 2009 at 7:26 PM Jaxter said...

hello there very usufl post i tried it to my new blog but nothing happens do you have time to check my page source and see why?

thanks in advance!!
www.gamesms.us

April 27, 2009 at 7:41 PM FION in the house said...

Hi...Thanks for sharing but it didn't work on my blog.What is the problem?

Appreciated your reply.

May 2, 2009 at 9:25 PM Maclk said...

thanks for sharing

May 8, 2009 at 4:35 AM SuperDavyd said...

HI AMANDA, U IS VERY BEALTIFULLLL RSRS..

May 8, 2009 at 8:01 PM Sergio Ruiz said...

muchas gracias thank you, i love :D

May 9, 2009 at 12:47 AM Rajesh Kumar.Chekuri said...

it works good but the problem is when i use those paging navigation it navigates very badly sowing only some posts means it automatically jumps it's own irrespective of chosen navigation .......
then i remove the widget ......

http://funevil.blogspot.com/

May 9, 2009 at 7:23 AM 小毅 said...

that's great eventhought with a fews bugs

May 11, 2009 at 1:16 PM The Krew said...

wow!!! this has got to be the best feature.... I've been looking for this for a long time. thx. a million.!!!!!

May 13, 2009 at 3:29 PM O'Mama said...

Thank you from Thailand, Amanda. Your method is the best!

May 20, 2009 at 3:09 PM
shahide said...

that not working i click 2 page its go 3 are 5

May 20, 2009 at 4:05 PM
Anonymous said...

Great....

May 26, 2009 at 3:30 AM OldStuff said...

Thanks so much I have added it to my blog. If anybody wants to see how it looks like

http://tumuylol.blogspot.com/

It really great for my blog as I post many entries a day, so navigation was a problem before.

Now its brilliant. Thanks again

June 4, 2009 at 2:42 AM Rajesh Kumar.Chekuri said...

great widget ……….
but it couldn’t working fine….
i installed this widget i think u r the real hacker of the code i found it on some other blogs those just modified css of this…
i like the above navigation style that’s why i use it….

” the problem is when i navigate to next or 2 page it navigates some far and it displays only some posts only ”

just check the below blog and use navigation to understand …..

http://funevil.blogspot.com/search/label/Animal%20Pics?max-results=5

Thanks in ADV
From http://funevil.blogspot.com/

June 5, 2009 at 7:51 PM dom said...

Works great. Thanks!

June 11, 2009 at 7:14 AM
Anonymous said...

doesn't work, hide some posts and repeat others

June 15, 2009 at 6:02 AM
cowboy said...

REALLY COOL!! THANK YOU!!!!!!

June 18, 2009 at 3:45 AM film izle said...

thanks.. ( teşekkürler )

June 20, 2009 at 11:41 AM O'Mama said...

Well, when I choose a label with 35 posts, why are there only 20 posts showing?

What did I do wrong? Please help.

June 23, 2009 at 7:08 AM
FM said...

It works for http://hightechy.blogspot.com
Thanks alot mate...


FaHaD @ http://hightechy.blogspot.com

June 28, 2009 at 3:54 PM
Sensory Escape Images said...

How do i deal with duplicates on mine: www.SensoryEscapeImages.Blogspot.com

Thank you

July 1, 2009 at 8:43 AM mADdY said...

hey amanda,hw r u?
this hack is not working 4 me..
http://desiscrapa.blogspot.com/
cn u help me out?
plzzz...

July 2, 2009 at 2:15 PM Zain said...

Finally It worked!

Although Original Method is on Mohammad Rias's, but that didn't work for me.

Your customized version did ! :)

Thanks

July 4, 2009 at 8:01 AM Thomas Lauterjung said...

Thank you so much. Works great :)

July 4, 2009 at 8:30 AM Thomas Lauterjung said...

Just one question. How do I change the text color of the page numbers in parethesis , like
"Pages ( 75) "
On my site its black text on black background so its not visible. Already tried to change the colour to something else, but it didnt work.

( www.animationandmore.com ) Thank you

July 7, 2009 at 12:58 AM cygnet said...

its not work

tdak bisa bos

gak iso

July 9, 2009 at 5:12 AM Davut Erarslan said...

Bende Sayfa Numaralandırma'yı kendimce farklı bir biçimde anlattım.İsteyen buradanda bakabilir.Sayfa Numaralandırma

July 9, 2009 at 6:52 PM Tabib said...

Thanks for the hack.
It work for me here

July 12, 2009 at 7:54 AM Mukund said...

This hack is not working and I accept with what NathanKP said. I am working on this Page Navigation Hack too. My blog has got some of the best widgets.
Everything About Blogging

July 27, 2009 at 8:28 AM bhagya said...

not working ;-(
Please help me
http://bhagya-just4u.blogspot.com

July 27, 2009 at 9:44 AM bhagya said...

Thank you,
But not working for me :-(
Please check
http://bhagya-just4u.blogspot.com

July 27, 2009 at 10:03 AM Dzulmajdi said...

thx for the code, but how to fix to get the page navigation below more from the post "body" section???

see my blog

http://dzul89.blogspot.com

July 28, 2009 at 7:47 AM bLinky said...

hi! i tried your script version of the hack. it doesn't work. i am using the red-light theme (e column). i can make the canges in the template, but the "older posts/newer posts" still appear. i have http://linkulzilei.blogspot.com can you help me? reply here or via mail: blinkylicious@yahoo.com

August 1, 2009 at 11:31 PM Astronomer IYA 2009 said...

Hi

Thanks for the post and You can see this implemented in my astronomy blog too..

August 6, 2009 at 5:02 PM bobbie said...

hi. will the code works when you are using a custom template? i cant use the code to its optimal setting.

August 8, 2009 at 4:18 PM
Stefan said...

I have a problem, at my blog http://www.lumea-florilor.ro/ the numbered pages appear only if i click older page..in my homepage it not appear..why? Help me please!

August 19, 2009 at 12:17 AM rawink said...

Thanks ... its helpful...:)

http://www.lubuan.blogspot.com/

August 23, 2009 at 3:33 PM
Anonymous said...

Dear Amanda

You are great, really.

This you wrote on August 2009

Quote:

For those of you who may reed on occasion, who have bookmarked Blogg Buster for future reference or have simply stumpled upon this post, why not join the other 10,000 subscribers and also receive regular updates on the latest Blogger tipps, tricks and news.

You posted this tipp for Numbered Page Navigation on August 12, 2008

And you stopped answering on August 14, 2008 only two days later.
Is this your idea of regular updates on tipps and tricks?

So, stopp begging for new subscribers if you don't have the time to answer questions from your readers.

Sincerly yours, a disappointed reader who stumpled upon your Blogg

August 25, 2009 at 5:20 AM Thyago said...

dont work for me, whats happining?….. when i clik page 2 go to page 5!!! oO… thats my template .. http://www.best2know.info/2009/07/bizfresh-blogger-template-free-blogger.html … please…help me bro!

August 25, 2009 at 11:16 PM Dea Pierre said...

This was super helpful and worked perfectly,

THANK YOU
keep up the great work

August 29, 2009 at 9:49 AM Integralny said...

Hi, Amanda. Could you take a look at my blog, because it doesnt work by me. I would be very greatful if you will help me. http://psychika.net

What should I do ?

September 5, 2009 at 10:28 AM Dreamchaser214 said...

Thanks Amanda, the codes you modified worked for me. This is my blog,

http://techiemaxcorner.blogspot.com

It is about technology trivia plus some tips and tricks to maximize your gadgets. Only thing is that the page numbers didn't showed up in my homepage coz the "Older Posts" is still there. But, when you click on particular posts, the pages already shows up. I also have another blog, http://dreamchaserhaven.blogspot.com which is about inspiring people, but i haven't applied it there yet.. =)

September 6, 2009 at 10:42 AM
Johny Tim said...

mmm not work with my blog....
please help me

http://johnytim.blogspot.com/

September 8, 2009 at 2:27 PM noticiaeblog.com said...

This hack has won a Brazilian version on my blog ... it always citing the source right avoiding plagiarism

September 9, 2009 at 7:24 PM Josh said...

just noticed mine not working correctly with multiple posts per day. I did a special post theme last week and was posting 3 or more a day, and no some are stuck in the "hole" and you can't see them. I am removing the code and going back to the old way unless this can be fixed. I can't have missing posts...

September 11, 2009 at 9:52 PM yalçın said...

Hi Amanda,

I tried to use this hack but it doesn't show all pages on my site. It only show 26 pages of my site but there are many more page on my site. What is the problem about that.

Many Thanks,

Yalçın

September 13, 2009 at 7:54 PM ASNA said...

Nice Tip

http://sizzledsoft.blogspot.com

September 14, 2009 at 7:27 AM Abu Farhan said...

I made modification from that script And I hope can solve All Problem visit Page Navigation for Blogger (Problems Solved)

Post a Comment