Hello
Regarding the problem reported in point 2: at row 3883 of the file class-fields.php, in the case of fields like radio button or multiselect, the command
$this->field_value( $key, $default, $data )
returns an array that is not displayed.
The solution could be like this:
if($type==’radio’)
{
$res=$res[0];
}
elseif($type==’multiselect’)
{
$res=implode(‘, ‘,$res);
}
Nobody has an answer to my questions?
Thank you