Page 1 of 1

Как добавить в минипрофиль simple:press forum кастом поля?

Posted: 02 May 2015, 22:16
by sva
Как добавить в минипрофиль simple:press forum кастом поля?
Открываешь файл sf-topic-components.php
Ищем блок кода:

Code: Select all

	if($sfglobals['display']['posts']['postcount'])
	{
		$out.= '<tr align="center"><td class="'.$alt.'"><p>'.$postcount.'</p></td></tr>';
	}
меняем его на:

Code: Select all

	if($sfglobals['display']['posts']['postcount'])
	{
		$out.= '<tr align="center"><td class="'.$alt.'"><p>'.$postcount.'</p>';
	}
	# get_user_meta($post['user_id'], 'doljnost', true);
	$doljnost = get_user_meta($post['user_id'], 'doljnost', true);
	if($doljnost) {
		$out.= '<p>Должность:<br />'.$doljnost.'</p></td></tr>';
	}