Hello,
Has anyone moved the "Add Attach File"/attachments on the page from the default bottom to another location? I would like to move it up to a two-column section I set up on the basic form. I want to make this field more noticeable and try to encourage the use of pictures. It is for a support page a picture is worth a thousand words as they say.
This is where I set up the attachment for the form
This is the way it looks on a form
So I want to move this up and put it in a different section of the form besides on the bottom. Any input is appreciated.
You may have to 'play' with it a bit but it would be something like
// this also may be different depending on if you use the attach file tickbox vs metadata
// finds the parent row Div of the Attach File and then you can use insertAfter to position
// it after another node
// in the below you may need to move it to after a parent of the other "id" rather than the "id" // itself
$( document ).ready(function() {
$("#AttachFile").closest('div[class^="tr"]').insertAfter("#otherfieldname");
});