Search found 11 matches

by bruno.riddy
19 May 2017, 08:06
Forum: Help
Topic: Email notification of Note added
Replies: 4
Views: 3971

Re: Email notification of Note added

Thank you very much atrol, you've come through with a solution again. I really appreciate it.
by bruno.riddy
17 May 2017, 15:29
Forum: Help
Topic: How to customize "Issue Details" view?
Replies: 2
Views: 3738

Re: How to customize "Issue Details" view?

You could do it in the CSS. Each of those elements has a unique ID like "relationships". I added a custom CSS file through my config file and added display: none to other elements I wanted to hide.
by bruno.riddy
17 May 2017, 14:09
Forum: Help
Topic: Email notification of Note added
Replies: 4
Views: 3971

Re: Email notification of Note added

Many thanks atrol. Is there any way to turn this on by default or for all our users?
by bruno.riddy
17 May 2017, 13:11
Forum: Help
Topic: Email notification of Note added
Replies: 4
Views: 3971

Email notification of Note added

I recently upgraded our mantis version from 1.2.0 to 2.4.0. Love the new Mantis. I have one question though: When a notification is sent for a new note added the old behaviour was to show the body of the note in the email notification, whereas now it only includes a link to go to the webpage and vie...
by bruno.riddy
20 Apr 2017, 11:11
Forum: Help
Topic: automatically monitor an issue assigned to another user
Replies: 6
Views: 7645

Re: automatically monitor an issue assigned to another user

Hi all! After much work I managed to get my plugin working. On the plugin config page I called the database for a list of user emails, then presented three text boxes for users to filter this list down to create their monitor groups. I then saved the filter text boxes as strings rather than the list...
by bruno.riddy
07 Apr 2017, 09:59
Forum: Help
Topic: automatically monitor an issue assigned to another user
Replies: 6
Views: 7645

Re: automatically monitor an issue assigned to another user

So I have got my basic plugin to the stage where all new bugs are automatically monitored by a User whose ID I specify in the plugin. Great success. Now I want to make it so that on a config page you can define groups of users & all people in the same group automatically monitor the bugs submitt...
by bruno.riddy
29 Mar 2017, 08:14
Forum: Help
Topic: automatically monitor an issue assigned to another user
Replies: 6
Views: 7645

Re: automatically monitor an issue assigned to another user

Thanks for you reply atrol, Based on my own limited research, this was the same conclusion I came to. (I presume you mean EVENT_REPORT_BUG) I don't have any experience writing Mantis plugins though, do you happen to know if there's a very basic plugin that uses the same event which I can study to he...
by bruno.riddy
28 Mar 2017, 09:42
Forum: Help
Topic: automatically monitor an issue assigned to another user
Replies: 6
Views: 7645

automatically monitor an issue assigned to another user

Hi all! We are migrating to a new Mantis installation and I was wondering if anyone wanted to share any ideas on how to implement this feature? We have certain groups of reporting users who work very closely together, and it would be brilliant if they could automatically monitor the tickets of their...
by bruno.riddy
16 Mar 2017, 16:15
Forum: Help
Topic: Gravatars in 2.2.0
Replies: 3
Views: 5074

Re: Gravatars in 2.2.0

I fixed the problem - for anybody else's benefit:

I moved the

Code: Select all

$g_show_avatar = ON;
to be higher up the config page.

It was underneath my line to include custom css

Code: Select all

$g_css_include_file = "/css/custom.css";
and for some reason that broke everything.
by bruno.riddy
16 Mar 2017, 13:04
Forum: Help
Topic: Gravatars in 2.2.0
Replies: 3
Views: 5074

Re: Gravatars in 2.2.0

Sorry, I miswrote in my post.

I add $g_show_avatar = ON; to my \config\config_inc.php file and the site breaks - HTTP 500 error
by bruno.riddy
16 Mar 2017, 12:25
Forum: Help
Topic: Gravatars in 2.2.0
Replies: 3
Views: 5074

Gravatars in 2.2.0

I have Mantis 2.2.0 installed and I want to make use of the Gravatar integration. I have Gravatar installed on the manage plugins page. I have made a gravatar with the same email address as the Mantis user, however no avatar appears. I have tried adding " $g_show_avatar = YES" to my config...