Forum Functionality
Forum Functionality
Is there a way to remove or disable the 'Show Profile' option when one views topics and threads in the forum?
Re: Forum Functionality
Hi, to achieve that, you should edit the code.
What version of Forma?
What version of Forma?
Per supporto GRATUITO contattatemi in privato qui
Re: Forum Functionality
It is the latest stable version. Version 2.4.2.
Re: Forum Functionality
In /appLms/modules/forum/forum.php and in /appLms/modules/public_forum/public_forum.php search for:
and replace each with:
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
.'';
Per supporto GRATUITO contattatemi in privato qui
Re: Forum Functionality
Latest stable for community download is 2.4.4
Also, a new maintenance release is expected soon