SOLVED - Image field (Hide Select File Button, and delete)

Hello…
I need hide the “Select File” button, and the “Delete” checkbox, under a field image…
I’not remember the necesary code…
Some help?
Thanks!!

Hello…
In Javascript - form - On load

document.getElementById(“chk_ajax_img_fotoart”).style.visibility=“hidden”;
document.getElementById(“sc-id-upload-select-fotoart”).style.visibility=“hidden”;

change “chk_ajax_img_fotoart” and “sc-id-upload-select-fotoart” for the id’s in your form (inspect element)

2 Likes