Changes:
- Updated to Elgg 1.8.13
- Improved: Options panel
View Per Jensen'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.
Wow sounds great, but I have previous version works great still. So what is new in this version? Only improved options panel? That is for users or Admin?
I have bottom chat plugin which does not work with my mobilize plugin. Shows fine but can not send msg from the bottom chat. Can u make help with that please?
@kisssssss4ever You can view all changes by comparing folders with a tool like winmerge or in github. Options panel is for admins.
it's great people like gillie developing plugins for teh community. i am also making a mobile plugin but only for my site. it's gonna have that facebook app sidebar style where you click on an icon and a sidebar slides in from the left using jquery :)
Hi,
Question: why are videos not showing up (wire, blog..)?
And missing search field.
btw: thanks for this plugin. Much valuable.
And: is it not possible to comment?
@xsurf
They are, using the video plugin I tested on iPhone and iPad.
It's been around before, do a search.
Yes it is.
Thanks much.
+ The most operational-site-ready mobile plugin. Thank you.
you are free to delete this comment as you have free will. i request that you at least watch the video before deleting:
http://www.infiniteeureka.com/videolist/watch/3567/dr-barrie-trower-30-minutes-on-weaponised-microwaves-genocide-mind-control-and-cancer
i recommend ending judgment and attachment to fixed viewpoints and 'plans'.
what the hell does that video have to do with the mobile plugin?
did you watch it all?
Is it possible to get Mobilize to work with SW Social Web's Inchiridium theme? When I activate Mobilize and view it on my mobile phone, it shows part of the mobile front page, but then the it shows the Inchiridium theme right under it.
@Dylan Pruitt My experience is that mobilize works with most themes, some need a little adjustments though. You should ask the theme author.
@Dylan @Gillie You will have to make adjustments to the Inchiridium Theme to work with Mobilize. I don't how thou
Alrighty. I'll try to give it a shot. Thank you.
I tested videos plugin and embed extender plugin.
My experiences:
What am I doing wrong?
;)
:D
@ura soul I watch video but I donot understand? What is point?
Very good plugin. But conflict with Event Manager. If Mobilize active, then you cannot enter address when you create a new event. Google map doesnot show. If disable elgg simple cash then it work. Any solution any body? Thank you.
@Den Google maps show up fine on my test site. With or without simple cache.
Maybe some other plugins conflict.
@Deniz_Bilmen:
knowing that the information in that (and other videos/pages) exists and is being denied, while sitting coding software that might be contributing to the health challenges that others and potentially me may face/suffer with.. does not balance in me. so i chose to do what i can to pass on information through this social communication network that is right on point to the subject being addressed here - mobile communications. this is not a topic that is 100% only related to elgg.. simultaneously it is not a topic that elgg has nothing to do with.
@Dylan Pruitt Thank you for letting me have a look at your theme. To make it work with mobilize open mobilize/start.php and find,
if($mobile == true) {
Add below,
elgg_unregister_plugin_hook_handler('index','system','new_index');
That's it. If you want the background of the mobile front page to reflect your theme, you'll have to do some styling.
E.g., you could add a css class in css/mobilize.php,
.elgg-logged-out {
background: #555 url(<?php echo elgg_get_site_url();?>mod/inchiridium/images/random_grey_variations.png) repeat top left;
}
and add it to the markup in header.php using jquery,
<?php if (!elgg_is_logged_in()){ ?>
<script type="text/javascript">
$(document).ready(function() {
$("body").addClass("elgg-logged-out");
});
</script>
<?php }