A
A
Alexander2020-11-09 10:21:46
Bitrix24
Alexander, 2020-11-09 10:21:46

How to disable automatic comments in B24 issues?

After updating B24 to the latest version, automatic comments appeared in tasks, which essentially duplicate the "History". Is it possible to disable them without programming? (boxed B24 is used)

UPD: disabled comments programmatically, through the handler in init.php:

AddEventHandler("forum", "onBeforeMessageAdd", "onBeforeMessageAddHandler");
function onBeforeMessageAddHandler($data, $dir)
{
    if ($data['POST_MESSAGE'] == 'commentAuxTaskInfo'){
        return false;
    }
    return true;
}

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Alexey Ukolov, 2020-11-09
@AlexanderKs3

Support replied that it was impossible, but they would "hand it over to the development department."

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question