If you like this plugin buy me a beer ;)
This plugins is based in the tag cumulus but shows the photos of the profiles instead of the tags.
In the setting you can define the colour, width, height, size, and quantity of photos you want to show.
When you click in one of the photos it forwards to that person's profile.
There is an example where you can see it.
Here some screemshots:
and a video too
http://www.screencast.com/users/pedroprez/folders/Jing/media/d382cdfb-4124-40cf-ba0b-09aa5af71256
the feedback is welcome.
View Pedro Prez'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.
I tried installing your plugin and changed the start.php to line given but still see an empty box. i have flashplayer 10. any suggestions
@ elgg_noob I copy your code and paste it in the external page but it's not works. I use the tinymce's html to paste the php code.
@ sam Make sure it is place on the bottom plugin list.You also can try to disable and enable it.
Hope someone will tell how to use "external page plugin" to make it appear on "external page". Thanks!
Nice..works very well
I would like to make the suggestion for @elgg_noob 's code:
<center>
<div class="contentWrapper")
<?php
echo elgg_view('photo_cumulus/view', array('width' => '200', 'height' => '200', '', 'usernumber' => '10', 'background_transparent' => 'yes'));
?>
</div></center>
add the center tags, as it stand it is left aligned
when i activate the plugin my site goes blank? any ideas??
@chambo67
Hi, it worked first time out for me. did you change the start.php?
im a dumbass, pay no mind to me, working fine now, time to create a widget for it lol
yeah ! it works fime on my external page now, must disable the site access . Just add the code to front_right.php or fron_left.php in external page folder.
<?php
if(is_plugin_enabled('photo_cumulus')){
?>
<!-- display cumulus photos -->
<div class="index_box">
<h2>Photo Cumulus</h2>
<div class="contentWrapper")
<?php
echo elgg_view('photo_cumulus/view', array('width' => '200', 'height' => '200', '', 'usernumber' => '10', 'background_transparent' => 'yes'));
?>
</div>
<?php
}
?>
I actually added the code to custom_index
mod\custom_index\views\default\canvas\layouts\new_index.php
Awesome plugin...
would it be possible to have user display names popup when you hover on a picture?
is there a limit on max usernumber?
if put it on 50 users, i can't see pics....
is it possible to increse it?
thanks
for group:
$groups = get_entities('group', '', 0, '', 25, 0, false, 0, null);
if($groups){
foreach($groups as $group){
$images .= "<image href=\"" . $group->getURL() . "\" >" . $group->getIcon($size) . "</image>";
}
}
how is it possible to have random users/groups?
thanks
Is there an easy way to get it working together with TidyPics?
@Dahaniel
I think that is possible.
Replace line 39 with this
$newest_members = get_entities('object', 'image', 0, '', $usernumber);
Cheers
Hi, how come the tools menu goes underneath the box. anyone got the problem. how do i send it to back. or remove it from some of the pages
Seems to work in the right direction but it couldn't load the thumbnails, instead displaying questionmarks.
Hey guys two things 1) would it be possible to have user display names popup when you hover on a picture?
2) If i only want to display friends instead of newest members how do i filter out my friends that have not yet uploaded a profile picture yet?
It is a great idea Glynn, someone how to do it or have an suggestion? I can try, but need help of somebody. Greeting!
I know how to do to put the names when you pass the mouse over the image, the problem is that I do not have sufficient knowledge of Flash and ActionScript to do this, if someone wants to help me this would be very important for the community.
hi,
i installed successfully. but i am getting the following error on my all pages.
This widget requires Flash Player 9 or better
please help me.
great plugin Pedro thanks.
Is it possible to get it to show only on the custom_index page?
I tried to put it into the code of new_index.php and replace the "newest members" section but I got the white screen of death.
Is there an easy way to do this?
i used extend_view('page_elements/owner_block','photo_cumulus/view');
worked better for me put it next to the tag cumulus,
Oh I thought I would make the comment that going by http://www.roytanck.com/
who is the wp-cumulus dev, this version has a security hole for XSS hacking.
-----------------