I searched a lot but I didn't find any solution.
When a visitor is visiting a registered user's profile, I would'like to display a form that could be sent to the user.
There is any way to display a form in a user profile tab and send it to the user ?
When a visitor is visiting a registered user's profile, I would'like to display a form that could be sent to the user.
There is any way to display a form in a user profile tab and send it to the user ?
Hi lexdigit,
Which user profile ? do you mean you are using Community builder ?
Max
Which user profile ? do you mean you are using Community builder ?
Max
Then you need a community builder plugin to load the form inside a tab, or is there a solution to load Joomla content plugins inside tabs ? if there is then you may include the form using the plugin!
Regards,
Max
Regards,
Max
Ok, I solved the problems in this way :
-Include the form in a content article.
-Publish the content article in a module (with mod_placehere).
- Add this code to the form in order to get user email:
<?php $val = $_GET['user'];?>
<?php $user = &JFactory::getUser($val); ?>
<input name="mailto" id="mailto" type="hidden" value="<?php if ($user->id > 0) echo $user->email ; ?>" />
-Publish the mod_placehere trough mod_metamod when a user profile is displayed.
This work for public and registered visitors.
Thanks for Help and suggestion Max.
-Include the form in a content article.
-Publish the content article in a module (with mod_placehere).
- Add this code to the form in order to get user email:
<?php $val = $_GET['user'];?>
<?php $user = &JFactory::getUser($val); ?>
<input name="mailto" id="mailto" type="hidden" value="<?php if ($user->id > 0) echo $user->email ; ?>" />
-Publish the mod_placehere trough mod_metamod when a user profile is displayed.
This work for public and registered visitors.
Thanks for Help and suggestion Max.
Thank you for posting this too, one note is that you didn't need to use mod_placehere because Chronoforms has its own module!
Regards
Max
Regards
Max
This topic is locked and no more replies can be posted.
