Manual new ticket creation not working + change the "+ New" button back

Hello,

Within the past week, we have started to run into an issue with creating a new ticket manually in our Plumsail HelpDesk instance, mainly that creating them manually is not working.

See below for the error we’re experiencing:

Do I need to repair the instance or something? I’m not sure why it isn’t working.

Also, the button to create a new ticket has changed to a dropdown menu, and when this change happened, the issue started happening. Is there any way to revert this so it just creates a new ticket?

How do you modify this bar?

image

I didn’t see any way to edit it with Plumsail Forms.

Our Plumsail HelpDesk instance is fully up to date.

Any help with these issues would be greatly appreciated, thank you.

Hello Jake,

To return the “New“ button to its previous appearance, follow these steps:

  1. Go to HelpDesk site → Tickets (list) → List settings

  1. Go to Advanced settings
  2. Scroll down → find Folders → block Select “No”


After this, the button will return to its previous appearance, without the drop-down menu.
Please try to create a ticket again and tell me if it worked or not.
If the error still appears, please try to create a ticket in Incognito mode, will this error appear here again?

Please also clarify what exactly you would like to change in the menu bar?

2 Likes

I believe this has fixed the issue. Thank you!

In the menu bar, we’d like to remove the “Forms” option. Is this possible?

This button is a standard Sharepoint button, it cannot be removed simply in the settings.
If you use custom forms, it may be possible to hide it using CSS code.

Please clarify whether you use forms for your site?

Best regards,
Aleksandra
Plumsail team

We use forms, but the removal isn’t a big deal. We’re good for now, thank you!

Hi Jake,

If you decide to hide this button, you can do it like this:

  1. Open the browser console (F12 or right click → Inspect). While on the Inspector tab, click on the button, then you will see what this HTML element is and copy data-automationid:

  1. Add this CSS code to List section in CSS editor of your form:

button[data-automationid="ManageFormCommand"] {
display: none;
}

Best regards,
Aleksandra
Plumsail team