user2713512
user2713512

Reputation: 271

Joomla 3.4.0 pagination

I have just updated to Joomla 3.4.0 and my pagination hack has disappeared.

Previously the number of (pagination) links to show could be edited in pagination.php but I can no longer find out where that file lives?

What's causing this issue and how can I fix it?

Upvotes: 0

Views: 1224

Answers (2)

user2713512
user2713512

Reputation: 271

Just discovered it is now stored here:

libraries/cms/pagination/pagination.php

Upvotes: 0

borracciaBlu
borracciaBlu

Reputation: 4225

The pagination file you are talking about is in:

templates/your_template_name/html/pagination.php

In that file you can edit the following functions:

pagination_list_footer($list)
pagination_list_render($list)
pagination_item_active($item)
pagination_item_inactive($item)

You can find a proper tutorial here

Upvotes: 1

Related Questions