• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Remove priority

Remove priority 11 years 6 months ago #20083

  • fvaurs
  • fvaurs's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
Hello,

Is there any way to remove the priority feature from rsticket ?
Or to just remove the priority display (and assign a default one on background).


Thanks.
The administrator has disabled public write access.

Remove priority 11 years 6 months ago #20084

  • octavian
  • octavian's Avatar
  • NOW ONLINE
  • RSJoomla! Official Staff
  • Posts: 783
  • Thank you received: 110
Hello,

You can easily hide it by going to /components/com_rsticketspro/views/submit/tmpl/default.php and replacing:
<tr>
	<td><label for="submit_priority"><span class="hasTip" title="<?php echo JText::_('RST_TICKET_PRIORITY_DESC'); ?>"><?php echo JText::_('RST_TICKET_PRIORITY'); ?></span></label></td>
	<td><?php echo $this->lists['priorities']; ?></td>
</tr>

with:
<tr style="display: none">
	<td><label for="submit_priority"><span class="hasTip" title="<?php echo JText::_('RST_TICKET_PRIORITY_DESC'); ?>"><?php echo JText::_('RST_TICKET_PRIORITY'); ?></span></label></td>
	<td><?php echo $this->lists['priorities']; ?></td>
</tr>
.
Please note: my help is not official customer support. To receive your support, submit a ticket by clicking here
Regards,
RSJoomla! Development Team
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!