This release is for Elgg 1.8 only
View Jerome Bakker's plugins
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.
Can you help out how to make friends request notifications icon work with deyan shell?
Hi,
I would like to know whether there was any significant changes in this 1.8 version plugin?
Works great. It would be even better, if there was an option to resend the invite along with "Revoke" option.
Sad I could not recomment this plugin, second time :(
:)
and in profile when invitation is sent it should either show "Resend invitation" or "Already invited" or nothing should be displayed not "Add friend"
:)
All depricated notices where removed and the plugin was made using the new Elgg 1.8 features
It should already do this, I'll look into this
Thanks for this wonderful plugin. I see no one seems to have the same problem, but I have a problem with group icons when I activate the plugin. I don't see them, at any size, so it shows alt message. However, I turn off the plugin and there they are again. It's strange because it doesn't seems the plugin interfere with group icons at all. My Elgg version is 1.8.1
@Sam Lowry:
Probably something went wrong while uploading the plugin and some strange character where injected in one (or more) files.
Try re-uploading the plugin (first remove, then upload), if this doens't help you have to check all files (this is time consuming) for strange character.
The strange characters are probably located before <?php in the .php files. Check the start.php and /lib files first.
You'll be looking for maybe single, spurious chars or invisible (harder to detect/ locate) in UTF-8 encoded files (perhaps in Language Files). In the past - that has been the primary cause of your symtoms..
Thank you both Jerome and DhrupDeScoop, that solved my problem. It was a little "-" before <?php in a language file. You've saved me a lot of time.
Hey thanks for the great plugin, it's really apprecited. recomended!
Does it notify the user when a friend request is received.
yes it do notify the user in topbar
great plugin. works perfect. Thanks
Thanks for the update.
I had a small bug (didn't anyone had it too ?) that redirected users to activity page instead of displaying the request page. Probably caused by a missing return value in friend_request_page_handler function in start.php ; adding following (bold) line did the trick :
function friend_request_page_handler($page) {
if(isset($page[0])){
set_input("username", $page[0]);
}
include(dirname(__FILE__) . "/pages/index.php");
return true; // Facyla 20111123
}