• Hello,
    I have setup the plugin on an website where each event can have 500 subscribers.
    But when I try to “show all” or to “CSV export” ; I got only the 300 last.
    Thank you.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author roundupwp

    (@roundupwp)

    Hey adage,

    Sorry for the trouble! This limit was set to ensure that the server wouldn’t timeout or reach a memory limit before displaying or exporting registrations for an event. Making it safe to display more than 300 registrations at once is something we plan on addressing soon.

    In the mean time, you could try one of the following:

    1) Delete 300 records so the last 200 records could then be exported
    2) Change the line of code that limits the number of records to 300. This is line 95 of the file class-rtec-admin-events.php found in the inc/admin directory:

    Change:

    $this->records_to_retrieve = 300;

    to this:

    $this->records_to_retrieve = 500;

    Otherwise I’ll see if an update can be made within the next few weeks to address this. Let me know if you need more help or have questions!

    – Craig

    Thread Starter Adage Group

    (@adage)

    Thank you very much for your fast answer ; the second solution solved the problem, thank you.

    Plugin Author roundupwp

    (@roundupwp)

    No problem! Have a great start to your week.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Only 300 subscribers on CSV exports’ is closed to new replies.