Author Topic: Show number of current page  (Read 3597 times)

0 Members and 1 Guest are viewing this topic.

Offline dmitrijjuy

  • Pre-Newbie
  • Posts: 9
    • View Profile
Show number of current page
« on: April 07, 2012, 01:47:02 PM »
Hello! How to show number of current page in category and subcategory page (categories.html)?
For example, in category 7 pages with 15 photos ...
I want to show to the visitor:
"Current Page: 2" (or 1, 2, 3, 4, etc.)

Rembrandt

  • Guest
Re: Show number of current page
« Reply #1 on: April 07, 2012, 05:49:53 PM »
Hi!

search in categories.php:

"paging" => $getpaging->get_paging(),

insert above:

"page" => $page,


search in your Templates/categories.html
Code: [Select]
{endif categories}
insert below, or where ever you want:
Code: [Select]
Current Page: {page}

mfg Andi

Offline dmitrijjuy

  • Pre-Newbie
  • Posts: 9
    • View Profile
Re: Show number of current page
« Reply #2 on: April 07, 2012, 06:21:59 PM »
Thank you, this is what I needed!