Topic: [Solved] Removing Hyperlink
Hi,
On the view topic page how can I remove the hyperlink that links the username to the profile page
Thanks
You are not logged in. Please login or register.
PunBB Forums → PunBB 1.3 troubleshooting → [Solved] Removing Hyperlink
Hi,
On the view topic page how can I remove the hyperlink that links the username to the profile page
Thanks
you'll need to go to
viewtopic.php
and search for
// Generate author identification
change below
and manually delete the link you don't want...
What can I change this to
$forum_page['author_ident']['username'] = '<li class="username">'.(($forum_user['g_view_users'] == '1') ? '<a title="'.sprintf($lang_topic['Go to profile'], forum_htmlencode($cur_post['username'])).'" href="'.forum_link($forum_url['user'], $cur_post['poster_id']).'">'.forum_htmlencode($cur_post['username']).'</a>' : '<strong>'.forum_htmlencode($cur_post['username']).'</strong>').'</li>';
Well this is the hyperlink part of that
'<a title="'.sprintf($lang_topic['Go to profile'], forum_htmlencode($cur_post['username'])).'" href="'.forum_link($forum_url['user'], $cur_post['poster_id']).'">'.forum_htmlencode($cur_post['username']).'</a>'
if taking out that is too much how about just the href="...."
I tried to take out the href and it made no effect
You saw that it's repeated a few times, for guests, logged in users etc....
I managed to do this thanks
PunBB Forums → PunBB 1.3 troubleshooting → [Solved] Removing Hyperlink
Powered by PunBB, supported by Informer Technologies, Inc.