Hi,
a fast solution is to show the field that contain the impressum after the text "Simon E. only shares some information with everyone" (or replace it), please follow these steps:
- Access to Admin Panel (
http://docs.easy-profile.com/index.php/article/social-network-configuration)
- Go to Theme Manager
- Choose "SocialNetwork Theme"
- Choose the file to override from left menu (Users->view.ctp)
- Click on button "Copy" and copy it in "Blue Theme" (With this you will create the override, the override will be not overwritten when you install an upgrade of the plugin)
- Come back to Theme Manager and choose "Blue Theme"
- You will see your override to customize.
- In this new file you can replace line 259 from this
printf( __('%s only shares some information with everyone'), $user['User']['name'] );
to this
{
printf( __('%s only shares some information with everyone'), $user['User']['name'] );
$tmpUser = JsnHelper::getUser($user['User']['id']);
echo '<div><br /><br />'.$tmpUser->getField('impressum_field_alias').'</div>';
}