You could simplily this plugin: http://community.elgg.org/plugins/869364/1.8.2/elgg-18-enhanced-friendly-time. While this plugin is not exactly what you are looking for as it does change the time output (e.g. not showing XXX days ago but instead the date for items posted long ago) you could use it as a starting point.
For not showing any time output the following code should work in start.php:
<?php
function no_friendly_time_init() {
elgg_register_plugin_hook_handler('format', 'friendly:time', 'no_friendly_time_hook');
}
function no_friendly_time_hook($hook, $type, $return, $params) {
$timestamp = "";
return "<acronym title=\"$timestamp\">$friendly_time</acronym>";
}
elgg_register_event_handler('init', 'system', 'no_friendly_time_init');
Actually, you would need only a manifest.xml file in addition to this start.php to have a plugin that does no longer show the posting date of items.
HI.
I am in the same booat with you.
I wanna bulk delete mebers and Brett's bulk delete plugin is no good one elgg1.8 version
I recently added Bulk User Admin plugin, but i would have to tick over 4000 times to delete all users.
it would be helpful if someone made a plugin that would have the "select all" options.
@Luis Teran: You can use firefox webmaster tools plugin to check all checkboxes on a site.
A quick and dirty way is to append ?limit=50 to the end of the URL to show 50 entries at once. There's an "All" checkbox that will select all the users on the current page.
There isn't an option to delete all unvalidated users because you will delete users who have just registered, which isn't usually desirable.
the secret to finding all the correct answers is to be inquisitive (very!)
and sometimes have nothing better to do but browse elgg stuff @here ;-)
http://community.elgg.org/plugins/1181949/1.1/login-reminders
will do what you want automatically !@;-X
Love the ?limit=50 idea! exactly what I was after.
Hey iionly, thanks for the reply. Here is an image to better explain what I'm on about. http://www.seoguelph.com/images/groups.jpg
How would I adjust the order. say for example I wanted group activity to appear first when someone clicks on a group.
Did I explain that better?
Cheers.
Ahhh thanks Steve, I'll check this widget manager out. May be exactly what I'm after.
Widget Manager and groop_tools plugins should do it.
Anyone?
kinda.. also depends on whether u can code ;-) if u can.. look over this -- mod/file/views/default/file/group_module.php. try something like this, in there --
//upload a file
echo elgg_view('groups/profile/module',array(
'title' => elgg_echo('file:group'),
'content' => $content,
'all_link' => '?'.$new_link.'?'.$all_link,
'add_link' => $new_link,
));
Appreciate the input. Am going to give this another try.
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.