7.1 (2012-02-20):
View Jeroen Dalsem'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.
@burgs ... THANKS!!!
@ALL + @Burgs
Hmm... Admin > Settings > Profile Manager
is missing from my admin section... Im using 1.8.3 and Profile Manager 7.1
Here's a screen capture... as you can see... the
Settings > Profile Manager
is MISSING =(
@akaxunux why are you overriding the registration form? Profile Manager will add the profile type selector also on the form. If you are overriding, check that you are adding the profile type field correctly. Can you let me know if the what you have configured as the profile manager setting for "Who can change the profile type" under the "edit profile" section?
@art_director strange, is the plugin really enabled? Did you run upgrade.php? Do you see a setting link in the plugin listing?
How can I display multiselect options as plain text (without tags) in the profile page?
I guess I should change mod/profile_manager/views/default/output/multiselect.php
if(is_string($vars["value"])){
$vars["value"] = string_to_tag_array($vars["value"]);
}
echo elgg_view("output/tags", $vars);
but I dont know how...
@akaxunux just echo $vars["value"] if it is a string or use implode(",", $vars["value"]) if it is an array. Just don't push it through output/tags, because that will make it clickable tag links.
hello,,
i add some fields in registration form,, i want to keep the data entered in to the field's in to the database. how can i do this?
@mangesh : its autosaved to db on form submission, if fields are added through this plugin.