Page 1 of 1

Forum Functionality

Posted: Wed Nov 17, 2021 1:12 pm
by Schalk91
Is there a way to remove or disable the 'Show Profile' option when one views topics and threads in the forum?

Re: Forum Functionality

Posted: Wed Nov 17, 2021 2:04 pm
by alfa24
Hi, to achieve that, you should edit the code.
What version of Forma?

Re: Forum Functionality

Posted: Wed Nov 17, 2021 2:13 pm
by Schalk91
It is the latest stable version. Version 2.4.2.

Re: Forum Functionality

Posted: Wed Nov 17, 2021 2:27 pm
by alfa24
In /appLms/modules/forum/forum.php and in /appLms/modules/public_forum/public_forum.php search for:

Code: Select all

            . '<a class="ico-wt-sprite subs_user" href="index.php?modname=forum&amp;op=viewprofile&amp;idMessage=' . $id_message . '&amp;ini=' . $ini_page . '&amp;idThread=' . $id_thread . '">'
            . '<span>' . $lang->def ('_VIEW_PROFILE') . '</span></a>';

Code: Select all

            . '<a href="index.php?modname=forum&amp;op=viewprofile&amp;idMessage=' . $id_message . '">' . $lang->def ('_VIEW_PROFILE') . '</a>';

Code: Select all

            . '<a href="index.php?modname=forum&amp;op=viewprofile&amp;idMessage=' . $id_message . '&amp;ini=' . $ini_page . '&amp;idThread=' . $id_thread . '">' . $lang->def ('_VIEW_PROFILE') . '</a>';
and replace each with:

Code: Select all

.'';

Re: Forum Functionality

Posted: Mon Nov 22, 2021 11:40 am
by alberto
Schalk91 wrote: Wed Nov 17, 2021 2:13 pm It is the latest stable version. Version 2.4.2.
Latest stable for community download is 2.4.4
Also, a new maintenance release is expected soon