Publisher does not support the Fluid field type. Please do not contact asking when support will be available.

If you purchased an add-on from expressionengine.com, be sure to visit boldminded.com/claim to add the license to your account here on boldminded.com.

Ticket: Phrases pagination does not show up within a list-group—display is limited to 25 phrases in list

Status Resolved
Add-on / Version Publisher 2.3.0
Severity
EE Version 3.5.2

The Hatchery

Feb 27, 2017

Thank you for the quick reply to the last ticket, we will wait for the Structure release!

This issue is in the admin area only. We are limited to see only 25 entries in the Phrases list-group.
https://drive.google.com/a/thehatcherylabs.com/file/d/0B_x26jZYoOfIeFlIWkZXN0M1b28/view?usp=drivesdk

- http://ecn_cms.hatcherydev.xyz/cp-login.php?/cp/addons/settings/publisher/manage/phrases/list-group/1

We can see that other phrases have been added successfully past the 25 visual cap.
- 25th entry—http://ecn_cms.hatcherydev.xyz/cp-login.php?/cp/addons/settings/publisher/manage/phrases/manage-phrase/31
- 26th entry—http://ecn_cms.hatcherydev.xyz/cp-login.php?/cp/addons/settings/publisher/manage/phrases/manage-phrase/32
... up to this entry as our last—http://ecn_cms.hatcherydev.xyz/cp-login.php?/cp/addons/settings/publisher/manage/phrases/manage-phrase/76

Thanks,
Max

#1

BoldMinded (Brian)

I’m not aware of any limits on the queries, but I’ll look into it.

#2

BoldMinded (Brian)

Comment has been marked private.

#3

2op

The tables have a default limit of 25. To meet my need I changed the plugin to 100. However it is necessary to update to generate pagination.

$table = ee(‘CP/Table’, [‘autosort’ => TRUE, ‘autosearch’ => TRUE, ‘limit’ => 100]);

publisher/Controllers/Manage/Phrases.php (line 106)

#4

BoldMinded (Brian)

The build I sent removes the autosort and autosearch options, so its just:

$table = ee(‘CP/Table’);

Which I think does the same thing as setting no limit. Did you try that?

#5

2op

Brian,

Is there an updated version of the add-on, greater than 2.3.0?

#6

BoldMinded (Brian)

The build I linked to before your last reply is newer, but has same version number.

#7

2op

Sorry, but the comment is private. That’s why I can not see.

#8

BoldMinded (Brian)

Only the ticket reporter and myself can see it, but the main change in the build is the code snippet I posted above.

#9

BoldMinded (Brian)

I tested locally with a group containing 30 phrases and the above code changes fixes it. It’ll be included in the 2.3.1 release.

Login to reply