Hi,
based on this documentation I want to show in category above records list how much articles are in this category.
I did this and it kind of works. %d is only the number of records listed on page and not from whole category. So if my pagination limit is at 10 it will say "10 records found", if 20 it wil say "20" records found.
How can make it so that pagination will not limit me?
$api = new CobaltApi();
$data = $api->records(null, 'all', null, null, null, null, null, null, null, null, null, $ids);
echo JText::sprintf('Total found %d records', $data['total']);
Hi,
based on this documentation I want to show in category above records list how much articles are in this category.
I did this and it kind of works. %d is only the number of records listed on page and not from whole category. So if my pagination limit is at 10 it will say "10 records found", if 20 it wil say "20" records found.
How can make it so that pagination will not limit me?