Dunger
Forum Replies Created
-
Forum: Plugins
In reply to: [cformsII] Can't download records from databaseStill got this problem – when i’ve got more than specific number of records i can neither download nor view all records at once :/
The number is about few thousands (more than 5 000, less than 10 000) when to problem starts to occur. After deleting some records below some unknown number, i can again download and view all records at once.
Is there any way to delete more records in a faster way than selecting them one by one from the tracking table? I mean select whole 200 with shift+click or something?Forum: Plugins
In reply to: [Participants Database] Changing the private_id default valuesThere is no error/warning now, but Record Not Found Error Message is still showing and still cannot force it to show only specific fields as a result.
I dont want to bother you with this, it’s also good even without instantly showing results as a single record. It’s just one more click for people, so its like cosmetic thing.Once again, great job with this plugin!
Forum: Plugins
In reply to: [Participants Database] Changing the private_id default valuesThe error is:
Warning: key() expects parameter 1 to be array, null given in /home/beactive/domains/beactivedentist.com/public_html/wp-content/themes/Nimble-child/templates/pdb-list-detailed.php on line 7
There is also Record Not Found Error Message.
When i turn off suppress and filter=”id=0″ the error dissapears, but first record of database is fully shown and also a list of Record IDs.
When suppress or filter=”id=0″ is on, searching is working (i mean, despite error), but its showing full result and i cant find a way to show only selected fields :/ (eg. name and adress)
Forum: Plugins
In reply to: [Participants Database] Changing the private_id default valuesGreat, specifing
‘field=”id”‘
is working!
I am still wondering why “private_id” was showing as a result of a search, but hopefully it wont matter in this case ??I didnt modified core files nor implemented “private_id” anywhere.
Thanks a lot for help! It’s working perfectly now!
PS. When i was trying to modify the code to work like described in:
https://xnau.com/showing-a-search-result-as-a-single-record/
there was an error at line 7
‘<?php $id = key($this->records); ?>’
I am not sure if i did something wrong, its not working in my case or its not compatibile currently. Just to let you know about the situation.
And also thanks for the advices from over a year you gave me. I’ve noticed that i didnt thank you enough. So, THANK YOU A LOT! ?? Great job with your plugin!
Forum: Plugins
In reply to: [Participants Database] Changing the private_id default valuesI’ve just tried that and i have a problem, because when i am searching for:
<input type="hidden" name="search_field" value="id" />
the results are for a member with correct id number, but private_id is shown as a result instead of id.
Shortcode for this page is:
[pdb_list filter="id=0" search=true template=detailed]
I’ve checked pdb_list_detailed and there is no single “private_id” entry in it :S
Anyway, if Record id will work it will be all i want actually ??
Forum: Plugins
In reply to: [Participants Database] Hidden field in signup visible in [pdb_record]I am trying to have a field with values “active member” and “non-active member” with “non-active member” as a default.
When member will pay a membership fee, then in members list i want to just click checkbox and with that change value to “active member”.
The point is, that i want to call this field in [pdb_record] to see if this member is active or not.I am stuck now, because when i am trying to use hidden field, all is working, but i cant find a way to make it visible in when calling this field in [pdb_record]
When i am using normal checkbox i cant place it in signup, because it’s visible, but without placing it in signup default value does not appear, so i need to input “non active member” manually.Forum: Plugins
In reply to: [Participants Database] Search form modificationUnfortunately, i barely know html/php/css, so it’s nearly impossible to me to add new line of code ?? Of course your way looks even better for my purpose, but i am really green at coding.
When it’s possible, i am using templates, but this time it was way over my skills.
Thanks for help anyway ??Forum: Plugins
In reply to: [Participants Database] Search form modificationThanks for your reply.
However, i found another way:i’ve edited PDb_List.class.php
and replaced:
$filter_columns = array($all_string => 'none') + Participants_Db::get_field_list('search', $columns, $sort);
with:
$filter_columns = Participants_Db::get_field_list('search', $columns, $sort);
And it’s working ??