Jump to content

Запретить менять благодарность

Featured Replies

Можно ли как-то запретить юзерам изменять благодарность? Т.е. пользователь поставил лайк на сообщение и и изменить свой выбор больше не сможет.

Link to comment
https://ipbmafia.ru/topic/20975-zapretit-menyat-blagodarnost/
Share on other sites

Только через правку кода (или плагин).

Link to comment
https://ipbmafia.ru/topic/20975-zapretit-menyat-blagodarnost/?&do=findComment&comment=154747
Share on other sites
16 часов назад, Derbrent сказал:

Можно ли как-то запретить юзерам изменять благодарность? Т.е. пользователь поставил лайк на сообщение и и изменить свой выбор больше не сможет.

в настройках группы попробуйте сделать это

Спойлер

2004492511_Screenshot_2019-01-22(1).thumb.png.f4212ee1e32873fd528f78dfc39c5255.png

 

Link to comment
https://ipbmafia.ru/topic/20975-zapretit-menyat-blagodarnost/?&do=findComment&comment=154748
Share on other sites

\system\Content\Reactable.php
найти

		/* React to own content */
		if ( !\IPS\Settings::i()->reputation_can_self_vote AND $this->author()->member_id == $member->member_id )
		{
			return FALSE;
		}

Ниже добавить

		if( $this instanceof \IPS\forums\Topic\Post )
		{
			if( $member->member_id AND isset( $this->_reactions[ $member->member_id ] ) )
			{
				return FALSE;
			}
		}

При оценки пользователь сможет удалить или изменить реакцию.
После обновления страницы - нет.

Link to comment
https://ipbmafia.ru/topic/20975-zapretit-menyat-blagodarnost/?&do=findComment&comment=154749
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.


Guest
Ответить в этой теме...

Последние посетители 0

  • No registered users viewing this page.