Forum Functionality

Backend functionalities: user management, course management, reports, certificates, etc.
Post Reply
Schalk91
Newbie
Posts: 13
Joined: Wed Jul 22, 2015 3:27 pm
Version: forma.lms 1.4

Forum Functionality

Post by Schalk91 »

Is there a way to remove or disable the 'Show Profile' option when one views topics and threads in the forum?
alfa24
Senior Boarder
Posts: 2008
Joined: Fri Nov 24, 2017 8:45 am

Re: Forum Functionality

Post by alfa24 »

Hi, to achieve that, you should edit the code.
What version of Forma?
Per supporto GRATUITO contattatemi in privato qui
Schalk91
Newbie
Posts: 13
Joined: Wed Jul 22, 2015 3:27 pm
Version: forma.lms 1.4

Re: Forum Functionality

Post by Schalk91 »

It is the latest stable version. Version 2.4.2.
alfa24
Senior Boarder
Posts: 2008
Joined: Fri Nov 24, 2017 8:45 am

Re: Forum Functionality

Post 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

.'';
Per supporto GRATUITO contattatemi in privato qui
User avatar
alberto
FormaLms Guru
Posts: 1135
Joined: Fri Mar 02, 2012 9:18 am
Contact:

Re: Forum Functionality

Post 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
Post Reply