How to properly return the fields of an upload field that had been set using the set_field_upload function. In the case of input fields, i could simply return them from the callback this way.
function price_callback($value)
{
return '<input type="text" value="'.$value.'" name="price" style="width:462px">
<br> <b>Example:</b>
<br> <i>20,657, 1.45M</i>';
}
I need to put a note beside the upload button
