Show their personal text on index.template.php?

Started by Dhayzon, March 15, 2015, 12:13:15 PM

Previous topic - Next topic

Dhayzon

for example



on display.template.php is

// Show their personal text?
if (!empty($settings['show_blurb']) && $message['member']['blurb'] != '')
echo '
<li class="blurb">', $message['member']['blurb'], '</li>';



but as it would be in the index ?

Mortissimov

Search for this block:

echo '
<ul class="reset">
<li class="greeting">', $txt['hello_member_ndt'], ' <span>', $context['user']['name'], '</span></li>
<li><a href="', $scripturl, '?action=unread">', $txt['unread_since_visit'], '</a></li>
<li><a href="', $scripturl, '?action=unreadreplies">', $txt['show_unread_replies'], '</a></li>';


And edit like this:

echo '
<ul class="reset">
<li class="greeting">', $txt['hello_member_ndt'], ' <span>', $context['user']['name'], '</span></li>';
if (!empty($settings['show_blurb']) && $message['member']['blurb'] != '') {
echo '<li class="blurb">', $message['member']['blurb'], '</li>';
}
echo '<li><a href="', $scripturl, '?action=unread">', $txt['unread_since_visit'], '</a></li>
<li><a href="', $scripturl, '?action=unreadreplies">', $txt['show_unread_replies'], '</a></li>';

Dhayzon

navMartin that not work

this   work  ...........thanks

// Show their personal text?
       loadMemberData($context['user']['id']);
                loadMemberContext($context['user']['id']);


', $memberContext[$context['user']['id']]['blurb'],'

Advertisement: