I want to add suggested friends plugin in the river activity sidebar So I need some help,which files should I open?
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by Raül Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.
- Juho Jaakkola@juho.jaakkola

Juho Jaakkola - 0 likes
- buule@buulejon

buule - 0 likes
You must log in to post replies.River page displays the 'core/river/sidebar' view in the sidebar: https://github.com/Elgg/Elgg/blob/2.0/views/default/resources/river.php#L63
In your plugin you can use elgg_extend_view() function to extend the sidebar view with your own custom view (in this case suggested friends): http://learn.elgg.org/en/2.0/guides/views.html?highlight=elgg_extend_view#extending-views
thanks juho