Solved

Remove Attachment Option in Customer Portal

  • 3 November 2021
  • 9 replies
  • 596 views

Badge

I’ve discovered that it is possible for a customer to attach an .exe file to a new ticket, and for that .exe file to be downloaded by a member of staff responding to the ticket.. 

Due to the possibility of a Zero Day being introduced to our network, we would like to either:

  1. Remove the attachment option from the portal
  2. Limit the attachment types to a small few (pdf, .doc, .jpg etc)

Has anyone got any advice on how to action the above?

icon

Best answer by hemanth.ramya 12 November 2021, 13:14

View original

9 replies

Userlevel 5
Badge +9

Hello @Wiggy42,

 

You can easily hide the Attach file option in your customer portal using the code snippet below. This can be added from under Admin > Portals > Customize portal > Stylesheet section.

.add_attachment {
display:none;
}

For any further assistance, feel free to drop a note here and we would be happy to help! :)

Badge

Thank you for your suggestion.

I have used the code and added it to the style sheet.

The attach file link is now not displayed,  but the function to upload still exists if I hover in the correct location on the page.

Userlevel 5
Badge +9

That’s unfortunate, @Wiggy42! :(

Can you please add the following piece of code to the New ticket page under Admin > Portals > Customize portal > Layouts and pages > Portal pages and check if it helps?

<script>
jQuery("#attachment-type").remove();
</script>

 

Thanks!

Badge

That has worked

Thank you very much

Userlevel 5
Badge +9

That’s great news, @Wiggy42! :)

 

Cheers, 

Userlevel 1
Badge +4

is there any code that means I can add some text to the attachment field? it currently just says attachment but for some tickets I want to add a comment about hte type of document they need to attach. ie “Please attach your completed ISAM Association Form here. The form can be downloaded from here.”

They click on Manage Attachments -> Select the attachment to be removed -> Click Remove button.

 

Regards,

Rachel Gomez

Userlevel 1
Badge +4

Im not sure you have interpreted my quesiton correctly based on your response. Please elaborate. 

Userlevel 1
Badge +3

I have a similar request to JCMLI1973. We need to customize the attachment language or add something to it indicating what should be attached. Also, is it possible to have multiple attachment fields?

Reply