Installation:
1. Deactivate previous version if any
2. Delete entire folder
3. Upload this version of mobilize and activate
Changes:
- Updated to Elgg 1.8.16
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.
Thanks man
How to add elgg_topbar in mobilize?
Google it please.
Hi, it works great. Is there support for the "search" functionality? Or is there simply no room space for this.
@Tauvic Ritter
It's been answered here, http://community.elgg.org/plugins/847027/2013.07.11/mobilize-mobile-plugin?annoff=50
Fatal error: Call to undefined function elgg_is_logged_in() in /home/dacari/public_html/mysite.com/elgg/mod/mobilize/index.php on line 15
@buule
Which version of Elgg are you using? This version of mobilize is for 1.8.+
Did you edit core files?
Great plugin, thank you very much!
Hi there... is there any way to handle profile page with "iShouvik Profile 1.8 for Elgg 1.8" plugin? Profile page is not visible correctly with this plugin...
Plesae suggest.
Regards
@Shah Nawaz
I think you should ask the plugin author. Mobilize can not possibly support all the plugins that are available here. Only bundled plugins are supported.
It is up to the plugin authors to decide whether to support small screens, which basically is what mobilize does.
Hi per can you help me, ive upload a few plugins and they work fine but this plugin it don't work i get the following error.
This plugin is invalid: The required file "start.php" is missing. so i can't activate it, can you tell me what i need to do thanks.
@craigibhoy
You uploaded the wrong folder. Find folder "mobilize", that's the one you should use.
sorry per i found out the solution, with other plugins i used i just extracted and that was it, i didn't realize this had serveral folders. one which i had to move into the mod folder.
Anyway thanks for this mod :)
Notice a small problem, i use a different theme and tested on my xperia m and it uses that default ugly elgg theme you know the blue and white one, is this down to the theme im using also i logged in using xperia m and it goes back to web theme :(
@juniorhallak
Don't know what happened.
Make sure you are using Elgg 1.8. Make sure you uploaded folder "mobilize".
how to display homescreen.png for andorid devices...
@v06
Just save the website to home screen.
@juniorhallak
What bug are you talking about?
how to disble my theme custom_index
i try this....not work for me
if (!elgg_is_active_plugin('custom_index')) {
elgg_unregister_plugin_hook_handler('index', 'system', 'mytheme_custom_index'); elgg_register_plugin_hook_handler('index', 'system', 'index_handler'); }
Thanks
@v06
That's the right way to do it. Make sure mobilize is below your theme in plugin list.
Thanks for your reply...
checked.....
Nothing change in my mobilize...
any other way disable custom_index
Thanks
i also changed mytheme custom_index layout and css into custom_index
and i try this
if (!elgg_is_active_plugin('custom_index'))
{
elgg_unregister_plugin_hook_handler('index', 'system', 'custom_index'); elgg_register_plugin_hook_handler('index', 'system', 'index_handler');
}
Please help me....
@v06
Don't know what's wrong. But make sure that mobilize is at the bottom and that the condition is in mobilize start.php.
// mobilize start.php
if (!elgg_is_active_plugin('custom_index')) {
elgg_unregister_plugin_hook_handler('index', 'system', 'mytheme_index_handler');
elgg_register_plugin_hook_handler('index', 'system', 'index_handler');
}
And also check that you do not have default custom index plugin activated.
Widget Manager has a custom index as well. Can be switched off in the backend.
problem: i am using your basic_light theme...and create new custom_index plugin to over ride basic_light theme....i try widget_manger its working.....
it not working my_theme...
@v06 you started this discussion asking,
Now you say that you use basic_light, which does not use custom index. So what is your problem with mobilize?
i am using your basic_light and i also create new custom_index plugin(my_theme)...
how to disable custom_index when using mobilize
i try this...
if (!elgg_is_active_plugin('custom_index')) {
elgg_unregister_plugin_hook_handler('index', 'system', 'mytheme_index_handler');
elgg_register_plugin_hook_handler('index', 'system', 'index_handler');
}
and
if (!elgg_is_active_plugin('custom_index')) {
elgg_unregister_plugin_hook_handler('index', 'system', 'basic_light_index_handler');
elgg_register_plugin_hook_handler('index', 'system', 'index_handler');
}