Hi,
no sorry, but you can do something like this:
https://www.easy-profile.com/support/link-to-profile-data-with-select-list.html#reply-4835
Make a Select field with all user
in select field type you can retrieve options from DB table (example from Joomla user table)
so create Select field and set these parameters:
- Multiple Selection: Yes
- Table: #__users
- Column for Values: id
- Column for Text: name
- *SQL where parameter: id<>{user id raw}
Create HTML Delimiter field to show a User List module with Joomla loadmodule plugin
put in description this code**: {loadposition usermodule}
Create a User List module to filter users from previous Select field
Create a module of type Easy Profile - User List
Set these parameters
Position: usermodule
SQL Custom Where***:
a.id={user select_field_alias displayed raw}
NOTE:
* id<>{user id raw} - with this you exclude your user from Select options
** {loadposition usermodule} - this code become from Joomla builtin Load module plugin and render all modules in "usermodule" position
*** replace "select_field_alias" with your select field alias
DOCS:
{user id raw} and {user select_field_alias displayed raw} become from our content plugin, docs at
https://www.easy-profile.com/docs/26-plugin-content.html and they will be replaces from the user data.
NOTE2 keep in mind that this is a workaround, Easy Profile is not designed to manage lists or favorites, is just one component of profiling.