Перейти до змісту
Домент ipb-board.ru продається.

Чат

Рекомендовані відповіді

Опубліковано

Привет,как сделать чат как у вас?Помогите буду благодарен 

Опубліковано
  • Адміністратор

Админ Панель-Внешний вид-Ваш стиль-Другие Приложения вибраем чат
Настройки-Хук: Глобальный чат
post-2-0-58436800-1446509120_thumb.png


 

Опубліковано

Скачиваешь чат -> http://ipb-board.com/files/file/89-shoutbox-141/

 

Папки admin и public закидываешь в корневую директорию своего форума, по FTP.

 

После того как закинется, переходишь в Админ Центр - Система - Приложения - Управления приложениями, ищешь там чат, жмешь установить.

Дальше настраиваешь уже сам чат. 

Опубліковано

Не получилось как у вас,у меня не красиво все вышло(

Скрин, по подробней, что изменить.

Опубліковано
  • Автор

Вот точто выделил это нужно убрать https://vk.com/club106086918?z=photo-106086918_386332689%2Fwall-106086918_2

И место "@" убарть ее или картинку поставить

 

 

 

 

Больше не как скрин не мог кинуть

Опубліковано

Для начала подключаем font-awesome к форуму, для этого зайди в АЦ -> Внешний вид -> Ваш стиль -> globalTemplate

Ищем:

</head>

После вставляем:

<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">

Далее заходим в АЦ -> Внешний вид -> Ваш стиль -> skin_shoutbox_hooks -> hookGlobalShoutbox

Ищем:

<if test="$this->memberData['g_shoutbox_use']">					<tr class='row1'>						<td class='altrow' valign='top' colspan='2'>							<input type='text' id='shoutbox-global-shout' size='70' class='input_text' />							<input type='button' id='shoutbox-submit-button' value='{$this->lang->words['shout']}' class='input_submit' />							<input type='button' id='shoutbox-clear-button' value='{$this->lang->words['clear']}' class='input_submit alt' />							<input type='button' id='shoutbox-refresh-button' value='{$this->lang->words['refresh']}' class='input_submit alt' />							<if test="$this->settings['shoutbox_allow_smilies']"> <input type='button' id='shoutbox-smilies-button' value='{$this->lang->words['smilies']}' class='input_submit alt' data-clicklaunch="populateSmilies" data-scope="shoutbox" /></if>							<if test="$this->settings['shoutbox_allow_bbcode']"> <input type='button' id='shoutbox-bbcode-button' value='{$this->lang->words['bbcode']}' class='input_submit alt' /></if>							<input type='button' id='shoutbox-myprefs-button' value='{$this->lang->words['my_prefs']}' class='input_submit alt' />						</td>					</tr>				</if>

И заменяем на:

<if test="$this->memberData['g_shoutbox_use']">					<tr class='row1'>						<td class='altrow' valign='top' colspan='2'>							<input type='text' id='shoutbox-global-shout' size='70' class='input_text' />							<i class="fa fa-paper-plane  input_submit tooltip" type="button" id="shoutbox-submit-button" title="Отправить" value="Отправить" style="font-size: 14px;"></i>							<i class="fa fa-ban input_submit alt tooltip" type="button"  id='shoutbox-clear-button' value='{$this->lang->words['clear']}' title="Очистить" class='input_submit alt' style="font-size: 14px;"></i>							<i class="fa fa-refresh input_submit alt tooltip" type="button" id="shoutbox-refresh-button" value="Обновить" title="Обновить" style="font-size: 14px;"></i>							<i class="fa fa-smile-o input_submit alt tooltip" type="button" id="shoutbox-smilies-button" value="Смайлики" title="Смайлики" data-clicklaunch="populateSmilies" data-scope="shoutbox" style="font-size: 14px;"></i>							<i class="fa fa-cog input_submit alt tooltip" type="button" id="shoutbox-myprefs-button" value="Настройки" title="Настройки" style="font-size: 14px;"></i>						</td>					</tr>				</if>
Опубліковано
  • Автор

 

Для начала подключаем font-awesome к форуму, для этого зайди в АЦ -> Внешний вид -> Ваш стиль -> globalTemplate

Ищем:

</head>

После вставляем:

<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">

Далее заходим в АЦ -> Внешний вид -> Ваш стиль -> skin_shoutbox_hooks -> hookGlobalShoutbox

Ищем:

<if test="$this->memberData['g_shoutbox_use']">					<tr class='row1'>						<td class='altrow' valign='top' colspan='2'>							<input type='text' id='shoutbox-global-shout' size='70' class='input_text' />							<input type='button' id='shoutbox-submit-button' value='{$this->lang->words['shout']}' class='input_submit' />							<input type='button' id='shoutbox-clear-button' value='{$this->lang->words['clear']}' class='input_submit alt' />							<input type='button' id='shoutbox-refresh-button' value='{$this->lang->words['refresh']}' class='input_submit alt' />							<if test="$this->settings['shoutbox_allow_smilies']"> <input type='button' id='shoutbox-smilies-button' value='{$this->lang->words['smilies']}' class='input_submit alt' data-clicklaunch="populateSmilies" data-scope="shoutbox" /></if>							<if test="$this->settings['shoutbox_allow_bbcode']"> <input type='button' id='shoutbox-bbcode-button' value='{$this->lang->words['bbcode']}' class='input_submit alt' /></if>							<input type='button' id='shoutbox-myprefs-button' value='{$this->lang->words['my_prefs']}' class='input_submit alt' />						</td>					</tr>				</if>

И заменяем на:

<if test="$this->memberData['g_shoutbox_use']">					<tr class='row1'>						<td class='altrow' valign='top' colspan='2'>							<input type='text' id='shoutbox-global-shout' size='70' class='input_text' />							<i class="fa fa-paper-plane  input_submit tooltip" type="button" id="shoutbox-submit-button" title="Отправить" value="Отправить" style="font-size: 14px;"></i>							<i class="fa fa-ban input_submit alt tooltip" type="button"  id='shoutbox-clear-button' value='{$this->lang->words['clear']}' title="Очистить" class='input_submit alt' style="font-size: 14px;"></i>							<i class="fa fa-refresh input_submit alt tooltip" type="button" id="shoutbox-refresh-button" value="Обновить" title="Обновить" style="font-size: 14px;"></i>							<i class="fa fa-smile-o input_submit alt tooltip" type="button" id="shoutbox-smilies-button" value="Смайлики" title="Смайлики" data-clicklaunch="populateSmilies" data-scope="shoutbox" style="font-size: 14px;"></i>							<i class="fa fa-cog input_submit alt tooltip" type="button" id="shoutbox-myprefs-button" value="Настройки" title="Настройки" style="font-size: 14px;"></i>						</td>					</tr>				</if>

Спасибо большое:)

Гість
Ця тема закрита для опублікування відповідей.