Support

  1. vincent65
  2. Support
  3. Tuesday, August 23 2016, 01:20 PM
When I a require field is empty and then save then I get an message above JLIB_FORM_FIELD_INVALID ....
Why is it not showing for example "require field is empty, please fill in"?
How can I fix this?
Beste regards Vincent
Attachments (1)
Accepted Answer
vincent65 Accepted Answer
Hi,
I was trying something to build a prifile and made a field selection. On top of that I see "Please select an obtion". I know that thsi comes from the language ini file en-GB.com_jsn. But I have also nl-NL.com_jsn.ini. Why do Easy Profile take English language?
  1. more than a month ago
  2. Support
  3. # Permalink
admin Accepted Answer
Admin
Hi,
This message is generated by Joomla JForm Validation and not Easy Profile, Easy Profile extends Joomla user management (not replace), so registration page is the same of Joomla with many improvements (ie. custom fields and tabs).

Also without Easy Profile you will have same message (for example if you do not fill username or name fields), the problem is that language string "Invalid field:" (JLIB_FORM_FIELD_INVALID) not works, but as I said this not seems a problem of Easy Profile.

Anyway, can you please post me your site details to check this? you can use the form below the reply in "Site Details" tab.
  1. more than a month ago
  2. Support
  3. # 1
vincent65 Accepted Answer
Content Protected
  1. more than a month ago
  2. Support
  3. # 2
vincent65 Accepted Answer
Content Protected
  1. more than a month ago
  2. Support
  3. # 3
admin Accepted Answer
Admin
After installation I get this problem.
This is not possible, I have disabled Easy Profile and now I can see K2 user profile page, same error (see screenshot 1). To do same test you can disable following plugins:
- Easy Profile - System Plugin
- Easy Profile - User Plugin

I have made another test, I have disabled also "K2 - System Plugin" to see original Joomla edit profile page, result: same issue (screenshot 2)

I don't know why this problem, but I'm sure this is not related to Easy Profile. Anyway to solve we have created a language override for constant "JLIB_FORM_FIELD_INVALID" (screenshot 3). You can customize your string from Extensions->Languages->Overrides
Attachments (3)
  1. more than a month ago
  2. Support
  3. # 4
vincent65 Accepted Answer
Content Protected
  1. more than a month ago
  2. Support
  3. # 5
vincent65 Accepted Answer
Content Protected
  1. more than a month ago
  2. Support
  3. # 6
admin Accepted Answer
Admin
In the attachement of this ticket I make a scheme of an Idea. It's a wonderfull component and I think I can do more with this component.
sorry, missing attachment, this forum allow only archive(.zip) and images

Secondly: how can I make an register page in a menu? I try to do this but I see then the easy Profile Pro page only.
Easy Profile extends Joomla user management (not replace), so registration page is the same of Joomla with many improvements (ie. custom fields and tabs). You need to create a menu item of type Users->Registration Form

And in the component Easy Profile Pro I get a error message...
Go into Joomla Menu Manager and search all menu items of type "Users » Registration Form". For each item you need to set Access to Guest, see screenshot (no make sense that already registered have permission to go on registration page).
  1. more than a month ago
  2. Support
  3. # 7
vincent65 Accepted Answer
Hi sorry, I made a zip file for you.
The scheme is a idea because I think it is maybe possible in you account. But it is better to ask you because you know your compoent better then me. See the attachement.
Thank you
  1. more than a month ago
  2. Support
  3. # 8
vincent65 Accepted Answer
Content Protected
  1. more than a month ago
  2. Support
  3. # 9
admin Accepted Answer
Admin
hi,
registered members never should not be in "Guest" group, you have assigned this usergroup to users "olga" and "ep".

Of course, if already registered member go to registration page, he will be redirect to profile page.

I see your suggestion, and I think you want to create a registration page to allow to admins to create profiles from frontend, but this is not possible with Joomla and Easy Profile
  1. more than a month ago
  2. Support
  3. # 10
vincent65 Accepted Answer
Content Protected
  1. more than a month ago
  2. Support
  3. # 11
vincent65 Accepted Answer
Hi,
I try to make a list with a SQL query
I want to make a list with user of a usergroup and then a selection of a field(s).
So for exemple, show a list of usergroup with a field of name.
do you have an example?
Thank you
Vincent
  1. more than a month ago
  2. Support
  3. # 12
admin Accepted Answer
Admin
  1. more than a month ago
  2. Support
  3. # 13
vincent65 Accepted Answer
Hi, I know that link and I try to find out but I need a little help with that.
Which one do I need?
Thanks
  1. more than a month ago
  2. Support
  3. # 14
admin Accepted Answer
Admin
Include some Usergroups

group_id IN (groupid1,groupid2,...)


of course you need to replace groupid1,groupid2,... with ID of usergroups for example like

group_id IN (9)

You can retrieve ID of usergroup from Administration->Users->Groups (there is ID column)
  1. more than a month ago
  2. Support
  3. # 15
vincent65 Accepted Answer
Hi,
Yes I did: group_id IN (Schoolgebruikers)
Schoolgebruiker a usergoup of the users.
But I see 0 users found. And can't be because thera are users in the Usergroup Schoolgebruikers.
So I think I mis something in the SQL query.
  1. more than a month ago
  2. Support
  3. # 16
vincent65 Accepted Answer
Content Protected
  1. more than a month ago
  2. Support
  3. # 17
vincent65 Accepted Answer
Hi, And that works very good!
And now I have all users of one usergroup.
I want to selec a field so that I can filter user who have a specifiek field?
So now I have this group_id IN (12).
What do I need more?
  1. more than a month ago
  2. Support
  3. # 18
admin Accepted Answer
Admin
In user list menu item you can set all search options.
  1. more than a month ago
  2. Support
  3. # 19
vincent65 Accepted Answer
Yes search options. But don't want to show seach form.
I want a list who is generate from SQL query.
And that works but i want to filter also with a query in a specific field. Like a name (Schoolname) of a number.
Then I get a list of a usergroup with an selction and not all user of that Usergroup.
  1. more than a month ago
  2. Support
  3. # 20
admin Accepted Answer
Admin
Hi,
ok, you can add something like this:

group_id IN (12) AND alias_of_field = "your value"


if field allow multivalues (checkbox and select multiple) you need to use something like

group_id IN (12) AND alias_of_field LIKE "%your value%"
  1. more than a month ago
  2. Support
  3. # 21
vincent65 Accepted Answer
Yes that's what I mean!
In some way it does not work.
Is "your value" the name of the field or also ID number?
  1. more than a month ago
  2. Support
  3. # 22
vincent65 Accepted Answer
Aha I understand more and more.
This is query I make
group_id IN (12) AND welke_groep = "Groep 3"
And this works perfect.
Great component and thank you for you patience
  1. more than a month ago
  2. Support
  3. # 23
vincent65 Accepted Answer
Hi, I upload a textfile (zip) with information and a question.
Thank you.
Vincent
  1. more than a month ago
  2. Support
  3. # 24
vincent65 Accepted Answer
I don't know other people can see my question and attachment but if so please can you delete the URL link and attcahement after reading?
Vincent
  1. more than a month ago
  2. Support
  3. # 25
vincent65 Accepted Answer
I removed the attachment. Can you also remove URL by references?
  1. more than a month ago
  2. Support
  3. # 26
vincent65 Accepted Answer
Content Protected
  1. more than a month ago
  2. Support
  3. # 27
admin Accepted Answer
Admin
Hi,
you need to create a menu item of type Easy Profile->Profile, after this you will have link like /alias_of_menu_item/vincent
  1. more than a month ago
  2. Support
  3. # 28
vincent65 Accepted Answer
Content Protected
  1. more than a month ago
  2. Support
  3. # 29
vincent65 Accepted Answer
Hi,
I install the social media plugin (jsn_Pro) I can see the installation was ok but I cannot find the plugin in the backend.
regards Vincent
  1. more than a month ago
  2. Support
  3. # 30
admin Accepted Answer
Admin
This is not a component, this is a simple plugin, you can manage all option from Admin Panel (frontend), see docs at http://docs.easy-profile.com/index.php/article/social-network-configuration
  1. more than a month ago
  2. Support
  3. # 31
vincent65 Accepted Answer
Content Protected
  1. more than a month ago
  2. Support
  3. # 32
admin Accepted Answer
Admin
Oke But where is Admin Panel in the frontend?
You will see Admin Panel in menu on the top bar in frontend (like screenshot). This is only available for Super Users as default, anyway in Admin Panel you can manage Roles.

In the menu manager I in the backend I ave only 3 option but not Easy Profile->Social Network
Menu item of type Easy Profile->Social Network is required, if missing this in item types list you need to try to reinstall package.
Attachments (1)
  1. more than a month ago
  2. Support
  3. # 33
vincent65 Accepted Answer
Ok. I did this three times in my test area. See Uploaded files. Installation is succesfull but I don't see a menu item.
  1. more than a month ago
  2. Support
  3. # 34
vincent65 Accepted Answer
Content Protected
  1. more than a month ago
  2. Support
  3. # 35
vincent65 Accepted Answer
Content Protected
  1. more than a month ago
  2. Support
  3. # 36
admin Accepted Answer
Admin
Sorry but I do not understand your question :(
  1. more than a month ago
  2. Support
  3. # 37
vincent65 Accepted Answer
Ok I understand. What I mean is when for example a user from school 1 (usergroup school 1) is logged in the frontend this user can see a list of users only of school 1 (usergroup school 1). I know this is posible in a userlist by using Custom SQL WHERE.
But this means that every school must have his own list menu link because I must change Custom SQL WHERE. For example group_id IN (11) of group_id IN (12) ect. for every school. (every school have his own usergroup)
So is there a way to make it dynamic. That I can use 1 link of userlist. Like this user is from School 1 (usergroup 1) then show list of school 1 and user 2 is from school 2 (usergroup 2) then show list of school 2 ect.
I hope you under my question better now. Maybe you other solutions or idea's and that is also welkom.
Thank you. Vincent
  1. more than a month ago
  2. Support
  3. # 38
admin Accepted Answer
Admin
There is way, but it not works with usergroups, it work only with custom fields.

SQL Custom Where accept also Content Plugin, so you can show only users with the same value in a field with this code:

usertype_aliasfield="{user usertype_aliasfield}"


{user usertype_aliasfield} will be replaced by value of field usertype_aliasfield from current logged in user. see docs about content plugin at http://docs.easy-profile.com/index.php/article/content-plugin

docs about SQL Custom where at http://docs.easy-profile.com/article/sql-custom-where
  1. more than a month ago
  2. Support
  3. # 39
  • Page :
  • 1


There are no replies made for this post yet.
However, you are not allowed to reply to this post.

Request Support

Support is currently Offline

Support Availability

Working days: Monday to Friday. The support staff is not available on weekends; in the most of cases tickets will not be answered during that time.

Reply time: Depending on the complexity of your support issue it's usually between a few minutes and 24 hours for paid members and about one week for free members. When we expect longer delays we will notify you.

Guidelines

Before you post: read the documentation and search the forums for an answer to your question.

When you post: include Site Details if you request a support (you can use the form below the reply in Site Details tab).

Auto Solved Question: If after a week the author of the post does not reply to a request by moderator, the question will be marked as resolved.

Language: only English

Search Users

Easy Profile® is not affiliated with or endorsed by Open Source Matters or the Joomla Project. Joomla is Free Software released under the GNU/GPL License.