skip to Main Content

I am trying to customize the widget. I have used the below code to enable categories, but have no idea how I show my own values:

Userback.widget_settings = {
  style: "circle",
  position: "sw",
  form_settings: {
      general: {
        display_priority: false,
        display_assignee: false,
        display_category:true,
      }
    }
};

All I see is the below:

enter image description here

2

Answers


  1. Chosen as BEST ANSWER

    To all future visitors

    The easiest way to do it is to go to your project settings, you would find a section to add and remove categories. Just add it and use Category section in widget settings to enable it enter image description here


  2. I found this in the docs:

    Categories and Priority

    categories: string

    Define the categories that can be chosen in the feedback form.

    Userback.categories = "Frontend,Backend,Database,UI";
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search