TubeX: Index Pagination

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • MANN
    Confirmed User
    • May 2006
    • 368

    #1

    TubeX: Index Pagination

    Anyone know how to put pagination in the tubex index?

    thanks
  • baryl
    Confirmed User
    • Aug 2011
    • 1086

    #2
    Depends on what you mean but you could just change the default index page code:

    {videos
    var=$videos
    amount=16
    featured=false
    sort=date_added DESC}

    to...

    {videos
    var=$videos
    amount=16
    featured=false
    paginate=true
    pagination=$pagination
    sort=date_added DESC}


    Basically just add
    paginate=true
    pagination=$pagination

    and change the amount and sort variables to whatever

    Comment

    Working...