Forum Functionality
Posted: Wed Nov 17, 2021 1:12 pm
Is there a way to remove or disable the 'Show Profile' option when one views topics and threads in the forum?
Code: Select all
. '<a class="ico-wt-sprite subs_user" href="index.php?modname=forum&op=viewprofile&idMessage=' . $id_message . '&ini=' . $ini_page . '&idThread=' . $id_thread . '">'
. '<span>' . $lang->def ('_VIEW_PROFILE') . '</span></a>';
Code: Select all
. '<a href="index.php?modname=forum&op=viewprofile&idMessage=' . $id_message . '">' . $lang->def ('_VIEW_PROFILE') . '</a>';
Code: Select all
. '<a href="index.php?modname=forum&op=viewprofile&idMessage=' . $id_message . '&ini=' . $ini_page . '&idThread=' . $id_thread . '">' . $lang->def ('_VIEW_PROFILE') . '</a>';
Code: Select all
.'';