Search found 5 matches

by fabihu
18 Jun 2019, 08:32
Forum: Customizations
Topic: Piority field colorised
Replies: 8
Views: 10138

Re: Piority field colorised

I tried the category_id == 50 to rewrite $priority_enum_string == 50
but unfortunately it doesn't work
by fabihu
13 Jun 2019, 07:31
Forum: Customizations
Topic: Piority field colorised
Replies: 8
Views: 10138

Re: Piority field colorised

as a very quick & dirty solution, open up bug_view_inc.php and find the line echo '<td class="bug-priority">', $t_priority, '</td>'; Replace that line with if( $t_bug->category_id == 50 ){ echo '<td bgcolor="red" class="bug-priority">', $t_priority, '</td>'; } else...
by fabihu
22 May 2019, 09:10
Forum: Customizations
Topic: Piority field colorised
Replies: 8
Views: 10138

Re: Piority field colorised

I'm using version 2.8.0.
Thank you for your advice!
by fabihu
21 May 2019, 09:41
Forum: Customizations
Topic: Piority field colorised
Replies: 8
Views: 10138

Re: Piority field colorised

Hello!
Do you have any idea how to start?

Thanks!
by fabihu
17 May 2019, 07:22
Forum: Customizations
Topic: Piority field colorised
Replies: 8
Views: 10138

Piority field colorised

I'd like to set the priority field to red if the value = urgent. How can I solve this?
Thanks