Create 21 contacts with com_contacts
Create Menu Item with Menu Item Type "List Contacts in a Category"
Set Contact Display Options "# Articles to List" to "All"
all (9999)
20
Contact Category Model shows $app->get('list_limit') is set to 20
Quick fix with system plugin:
function onAfterRoute()
{
// Contakt List Bug - Override List Limit
Factory::getApplication()->set('list_limit',999);
}
Perhaps there is a bad translation here?
The option does what it says. It sets the number of articles. There's no option to set number of contacts in J3. Only in J4.
Only in J4.
doh. I assumed Joomla 4. Sorry.
Pagination (list limit) for contacts is the global value set in configuration.php
Closing as expected behavior for J3.
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2020-07-08 08:01:40 |
Closed_By | ⇒ | SharkyKZ |
try
# Contacts to List
on theList Layouts
tab as that is the paramcontacts_display_num
which is used as a limit herejoomla-cms/components/com_contact/src/Model/CategoryModel.php
Line 289 in 16f284f