[Resolved] Disable "Check Ticket Status" widget

    • September 13, 2022 at 5:14 am #11585
      A
      Synopsis
      Participant

      Hello,

      Is it possible to disable the “Check Ticket Status” widget on the user panel ?

      Thanks,

    • October 18, 2022 at 8:22 am #12330
      stevland
      Keymaster

      Hi Synopsis,

      There isn’t a way to disable it. But you can hide it by adding the following to Admin Panel > Theme Options > Custom CSS:

      div#check-status {
      display: none;
      }

      .client-choice {
      width: initial;
      }

      You’ll probably want to hide the Check Ticket Status navigation link as well. In which case you should also add:

      a.status {
      display: none !important;
      }

You must be logged in to reply to this topic.