Открыть файл:
system/controllers/users/actions/profile.php
Найти там это:
//
// Стена
//
И чуть выше вставить это:
// // Лента // $user = cmsUser::getInstance(); $activity_controller = cmsCore::getController('activity', $this->request); $activity_controller->model->filterEqual('user_id', $profile['id']); if ($user->id != $profile['id'] && !$user->is_admin){ $activity_controller->model->filterHiddenParents(); } // Получаем HTML списка записей $activity_html = $activity_controller->renderActivityList($page_url);
'profile' => $profile, 'user' => $this->cms_user, 'is_own_profile' => $this->is_own_profile, 'is_friends_on' => $this->options['is_friends_on'], 'tool_buttons' => $this->getToolButtons($profile), 'friends' => $friends, 'content_counts' => $content_counts, 'fields' => $fields,
'activity_html' => $activity_html,
Далее идём в шаблон.
Открыть файл:
templates/Ваш шаблон/controllers/users/profile_view.tpl.php
И в нужном месте вставить это:
<div class="user_profile_activity"> <?php echo $activity_html; ?> </div>