Regarding getting the "Previous" and "Next" pagination links to not wrap, just find the lines:
Code:
if (keyword=="previous")
this.currentpage=(this.currentpage>0)? this.currentpage-1 : (this.currentpage==0)? this.pagecount-1 : 0
else if (keyword=="next")
this.currentpage=(this.currentpage<this.pagecount-1)? this.currentpage+1 : 0
inside the .js file, and change it to:
Code:
if (keyword=="previous")
this.currentpage=(this.currentpage>0)? this.currentpage-1 : 0
else if (keyword=="next")
this.currentpage=(this.currentpage<this.pagecount-1)? this.currentpage+1 : this.pagecount-1
Bookmarks