We have some customers part of many Organizations and when they log ticket they never change the Share With option, which means the request will stay as private request.
I believe the hardcoded location is very bad idea. The field should be on top of the request to ensure that customers pay attention who they are raising ticket for.
Also the fields is basically made invisible. I does not look like normal field in the form.
Is there any way how to move the field and make it more visible?
Hi @Jiri ,
unfortunately it is not possible to change the location. There are a lot of open suggestions for being able to customize the portal more completely So maybe some day.
You can use Javascript to move the element.
However, you will need an addon to run Javascript on top of the customer portal in Jira Service Desk.
Here is an example that will move the "Share with" to the top of the page. You can paste it in your "Console" in the browser to try it out.
document.getElementById("js-organization-picker").parentElement.prepend(document.getElementById("js-organization-picker"))
For further reading, here are some links were Atlassian explain similar problems, that is, they suggest solving with Javascript
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can use Javascript to move the element.
However, you will need an addon to run Javascript on top of the customer portal in Jira Service Desk.
Here is an example that will move the "Share with" to the top of the page. You can paste it in your "Console" in the browser to try it out.
document.getElementById("js-organization-picker").parentElement.prepend(document.getElementById("js-organization-picker"))
For further reading, here are some links were Atlassian explain similar problems, that is, they suggest solving with Javascript
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.