Activity Stream

Hi All
Just a quick question - I removed the Activity Stream from my dashboard, how can I replace it?
It’s not on the Dashlets list at all…
I’m guessing it’s a RSS feed I need to add, but I can’t find the URL to point the feeds dashlet at.

Any ideas?

Thanks in advance…

1 Like

Hi there,

It seems this isn’t in the dashlets list. It may be intentional and it depends how it has been defined in SugarCRM. The only way I can see to reinstate the dashlet is to navigate to your user and click on ‘Reset Homepage’. The downside to this is it will reset all of your dashlet configurations/tabs on your homepage.

Thanks,

Will.

Thanks Will
That’s a shame - how can I add it to the list of Dashlets?
Or have I identified a bug?

Hi there,

If this is a bug, it has been a bug in SugarCRM although this may be intended functionality.

Thanks,

Will.

1 Like

Figured it :slight_smile:

Create these 2 files in custom/modules/Home/Dashlets/SugarFeedDashlet (I had to create these directories)

Create SugarFeedDashlet.php

Contents:

<?php require_once('modules/SugarFeed/Dashlets/SugarFeedDashlet/SugarFeedDashlet.php'); class CustomSugarFeedDashlet extends SugarFeedDashlet {} Create SugarFeedDashlet.meta.php Contents: <?php require_once('modules/Home/Dashlets/InvadersDashlet/SugarFeedDashlet.meta.php'); $dashletMeta['InvadersDashlet']['hidden'] = true; Then do a quick repair The dashlet should appear under the tools menu :) #You might need to clear your browser cache too#
1 Like