Hi ,
I have a field that stores the default registration date. I hid the form but the label field is always displayed. I wonder how I can hide the label too.
$crud->callback_add_field('Date_Inscription_Systeme',array($this,'add_field_date_systeme'));
function add_field_date_systeme()
{
date_default_timezone_set("America/Montreal");
$date = date('Y-m-d H:i:s');
return '<input type=" hidden " maxlength="50" value="'.$date.'" name="phone" style="width:462px" readonly>';
}