Hi,
We really don’t know where your’re assumptions are coming from.
We’re using the latest unchanged free version 8.7 of ideapush.
Just to be sure, I personally was newly installing this latest plugin on another url.
The code is the same!
In Line 208 of single-idea.php,
We have the code
205 foreach($individual_custom_fields as $customField){
206 $further_custom_field_info = explode('|',$customField);
207 $field_type = $further_custom_field_info[0];
208 $field_name = $further_custom_field_info[1];
209 //i dont think we need to get any further info for now
210 $custom_field_array[$field_name] = $field_type;
}
Line 208 is causing the issue because an offset [1] is not defined.
The line
if($ideapush_is_pro == "YES"){
can only be found >90 lines later.
302 if($ideapush_is_pro == "YES" && isset($options['idea_push_show_custom_fields'])){
Same for the 2nd issue.
The first time, “ideapush_is_pro” is used, is in line 368,
but we have an issue in line 43 !
Code:
40 foreach($individual_custom_fields as $customField){
41 $further_custom_field_info = explode('|',$customField);
42 $field_type = $further_custom_field_info[0];
43 $field_name = $further_custom_field_info[1];
44 //i dont think we need to get any further info for now
45 $custom_field_array[$field_name] = $field_type;
46 }
as part of the function
idea_push_list_items($boardId,$order,$status,$tag,$customFieldFilter){
Regarding your third assumption, that no one else is raising this issues, see e. g.
https://www.ads-software.com/support/topic/unknown-offeset-1-in-idea-list-posts-arent-displaying/
You’re writing there that you can only offer limited support and suggesting to upgrade to the pro version. Well.
We really don’t want to give you a hard time. We like your plugin.
We’ve tried our best to make our problem transparent and convincing you that we haven’t changed or hacked the code at all !
Please check your assumptions, again.
Whatever you need, we can provide.
Many thanks in advance!