Hello,
I want to remove the send message and add friend below the picture on the profile page.
How can I do that?
Thank you
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.
- Steve Clay@steve_clay

Steve Clay - 0 likes
- Artur Vieira@ArturVieira

Artur Vieira - 0 likes
You must log in to post replies.This is displayed via the profile/owner_block view in the profile plugin. This view manually renders the "user_hover" menu, so you can register for the [register, menu:user_hover] hook and remove those items from the list, though you'll only want to do it if current_page_url() matches the profile URL format.
So in your plugin:
if (/* URL matches */) { function my_plugin_register_user_hover($hook, $type, $value, $params) { /* alter and return $value */ } elgg_register_plugin_hook_handler("register", "menu:user_hover", "my_plugin_register_user_hover"); }Thanks for the reply @Steve Clay
So to remove the buttons send message and add friend below the picture of the other users I need to create a new plugin that need to have that code at the start.php
Regards