SQUID Media
Forum Replies Created
-
Think it might be this week. Otherwise next week. I’ll give you a heads up in this thread. But WordPress will notify you of the update.
Repeat the re-activate thing.
Hmm, thats not quite supposed to happen. But easy enough to fix.
(Something like) This will be in the next update, but to help you out right now;
Edit the fileGFExcelOutput.php
and replace line 117$this->entries = GFAPI::get_entries($this->form_id, $search_criteria, $sorting);with:
$total_entries = GFAPI::count_entries($this->form_id, $search_criteria); $paging = array("offset" => 0, "page_size" => $total_entries); $this->entries = GFAPI::get_entries($this->form_id, $search_criteria, $sorting, $paging);Should fix your problem.
GFApi limits the default result to 20 entries (+ 1 header row = 21 rows).
I’ll see if I can make the code a bit prettier. But for now this should work. Sorry for the inconvenience.The title of your form is to long for PHPExcel to handle. I’ll add this to the fix-list. As a temporary fix, you can add this to your functions.php
add_filter("gfexcel_renderer_title",function($title) { return substr($title,0,30); });Thanks you for sharing this bug!
- This reply was modified 8 years, 7 months ago by SQUID Media.
Would you be able to enable wp_debug in wp-config.php, and then post the actual error? The 500 error is probably just because wp_debug = false.
Can you try to save permalinks again? Maybe disable and enable plugin again. This repersists the permalinks.
Please don’t share your urls. As it is avaible to everyone!
Forum: Plugins
In reply to: [GravityExport Lite for Gravity Forms] Sounds incredibly useful but…You’re welcome.
Forum: Plugins
In reply to: [GravityExport Lite for Gravity Forms] Sounds incredibly useful but…Hi @zimxo,
Thanks for the question. You’re actually looking at the wrong settings tab :). The installation section could a bit be more specific maybe. But you actually need the settings tab of a specific form. So to be more precise: Forms > Forms > A specific Form > Settings > Results in Excel. Also check out the screenshots. It shows you the right place.
I hope this helps. Let me know!