Jump to content

Use of moderation templates // Использование шаблонов модерации

Featured Replies

A guide showing how to use moderator templates in IPS Community Suite 4. (Invision Community). So how can I insert "plates" into a post.

First, go to: ACP --> Appearance --> Styles and Templates --> Edit HTML and CSS --> CSS custom tab --> custom.css

Paste the code below:

/* Domyślne ustawienia */
.webMessage {
    border-radius: 2px;
    color: #fff;
   	margin: 10px auto;
  	text-align: center;
    padding: 15px;
  	width: 75%;
}
/* Problem został rozwiązany */
.webMessage_success {
    background-color: #97cd76;
}
.webMessage_success:before {
	 content: "\f00c";
  	 font-family: 'FontAwesome';
  	 margin-right: 3px;
}
/* Temat został zamknięty */
.webMessage_closed {
    background-color: #fce473;
  	color: rgba(0, 0, 0, 0.5);
}
.webMessage_closed:before {
	 content: "\f023";
  	 font-family: 'FontAwesome';
  	 margin-right: 3px;
}
/* Temat został przeniesiony */
.webMessage_move {
    background-color: #42afe3;
}
.webMessage_move:before {
	 content: "\f0ec";
  	 font-family: 'FontAwesome';
  	 margin-right: 3px;
}
/* Twoje podanie zostało przyjęte */
.webMessage_ok {
    background-color: #97cd76;
}
.webMessage_ok:before {
	 content: "\f234";
  	 font-family: 'FontAwesome';
  	 margin-right: 3px;
}
/* Twoje podanie zostało odrzucone */
.webMessage_red {
    background-color: #ed6c63;
}
.webMessage_red:before {
	 content: "\f235";
  	 font-family: 'FontAwesome';
  	 margin-right: 3px;
}

Click Save.

s3.thumb.png.6dff2052318939d45ec03e5d82329572.thumb.png.9f80188d6fceb1b4f821bfab93008c26.png

 

Then go to: ACP --> Forum --> Moderation templates --> Add new item:

In the "Template name" field, enter, for example, Problem solved.

Active in forums --> All

Options Open/Close --> Close

Reply --> Add Reply

Click "Document Source" and paste the HTML code:

<div class="webMessage webMessage_success">
	Problem został rozwiązany.
</div>

We click the Save button.

Go to the selected topic and click "Moderate". From the list, select "The problem has been solved".

After clicking "Problem solved" the topic will be closed and our information plaque will be added.

Sample HTML code:

<div class="webMessage webMessage_success">
	Problem został rozwiązany.
</div>
<div class="webMessage webMessage_closed">
	Temat został zamknięty.
</div>
<div class="webMessage webMessage_move">
	Temat został przeniesiony.
</div>
<div class="webMessage webMessage_red">
	Twoje podanie zostało odrzucone.
</div>
<div class="webMessage webMessage_ok">
	Twoje podanie zostało przyjęte.
</div>

Preview:

s2.png.3787cf4d2ac6adb9bdfe1a5890d9778e.thumb.png.0349d57d06d4c060b9a41f737a92aa41.png

I will only add that you need to select the "Can post HTML?" Yes.

html.png.bcc967124deb3b69a176c75d72d108b6.png.0cf6b57527236a28ff9e7704d0aa8080.png

 

Russian

Руководство, показывающее, как использовать шаблоны модераторов в IPS Community Suite 4. (Invision Community). Так как же мне вставить "тарелки" в пост.

Сначала перейдите в: ACP --> Внешний вид --> Стили и шаблоны --> Редактировать HTML и CSS --> Пользовательская вкладка CSS --> custom.css

Вставьте код ниже:

/* Domyślne ustawienia */
.webMessage {
    border-radius: 2px;
    color: #fff;
   	margin: 10px auto;
  	text-align: center;
    padding: 15px;
  	width: 75%;
}
/* Problem został rozwiązany */
.webMessage_success {
    background-color: #97cd76;
}
.webMessage_success:before {
	 content: "\f00c";
  	 font-family: 'FontAwesome';
  	 margin-right: 3px;
}
/* Temat został zamknięty */
.webMessage_closed {
    background-color: #fce473;
  	color: rgba(0, 0, 0, 0.5);
}
.webMessage_closed:before {
	 content: "\f023";
  	 font-family: 'FontAwesome';
  	 margin-right: 3px;
}
/* Temat został przeniesiony */
.webMessage_move {
    background-color: #42afe3;
}
.webMessage_move:before {
	 content: "\f0ec";
  	 font-family: 'FontAwesome';
  	 margin-right: 3px;
}
/* Twoje podanie zostało przyjęte */
.webMessage_ok {
    background-color: #97cd76;
}
.webMessage_ok:before {
	 content: "\f234";
  	 font-family: 'FontAwesome';
  	 margin-right: 3px;
}
/* Twoje podanie zostało odrzucone */
.webMessage_red {
    background-color: #ed6c63;
}
.webMessage_red:before {
	 content: "\f235";
  	 font-family: 'FontAwesome';
  	 margin-right: 3px;
}

Щелкните Сохранить.

s3.thumb.png.6dff2052318939d45ec03e5d82329572.thumb.png.9f80188d6fceb1b4f821bfab93008c26.png

Затем перейдите в: ACP --> Форум --> Шаблоны модерации --> Добавить новый элемент:

В поле «Имя шаблона» введите, например, Проблема решена.

Активен на форумах --> Все

Опции Открыть/Закрыть --> Закрыть

Ответить --> Добавить ответ

Нажмите «Источник документа» и вставьте HTML-код:

<div class="webMessage webMessage_success">
	Problem został rozwiązany.
</div>

Нажимаем кнопку Сохранить.

Перейдите в выбранную тему и нажмите «Модерировать». В списке выберите «Проблема решена».

После нажатия "Проблема решена" тема будет закрыта и будет добавлена наша информационная табличка.

Пример HTML-кода:

<div class="webMessage webMessage_success">
	Problem został rozwiązany.
</div>
<div class="webMessage webMessage_closed">
	Temat został zamknięty.
</div>
<div class="webMessage webMessage_move">
	Temat został przeniesiony.
</div>
<div class="webMessage webMessage_red">
	Twoje podanie zostało odrzucone.
</div>
<div class="webMessage webMessage_ok">
	Twoje podanie zostało przyjęte.
</div>

Предварительный просмотр:

s2.png.3787cf4d2ac6adb9bdfe1a5890d9778e.thumb.png.0349d57d06d4c060b9a41f737a92aa41.png

Добавлю только, что нужно выбрать «Может публиковать HTML?» Да.

html.png.bcc967124deb3b69a176c75d72d108b6.png.0cf6b57527236a28ff9e7704d0aa8080.png

 

Credit to CzareK

Link to comment
https://ipbmafia.ru/topic/25568-use-of-moderation-templates-ispolzovanie-shablonov-moderacii/
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.