Перейти к содержанию

Redneck

Актив
  • Постов

    1454
  • Зарегистрирован

  • Посещение

  • Победитель дней

    61

Весь контент Redneck

  1. админка - пользователи - профили пользователей - создаете доп поля с выводом в профиль
  2. админка - стили - редактировать - core - front - custom - webask.css - найти код: .wa_rep_all a { border-radius: 3px; padding: 2px 5px; background: #FFF none repeat scroll 0% 0%; font-weight: 600; } изменить строку background: #FFF none repeat scroll 0% 0%; на background: transporent none repeat scroll 0% 0%;
  3. а чего не хотите плагин поставить как на мафии, очень удобно
  4. Одно дело установить плагин, а другое ковырять стиль, из-за чего в последующем при обновлении платформы, могут возникнуть проблемы
  5. В этом плагине несколько вариантов, в том числе и при нажатии на ник.
  6. как вариант: попробуйте сбросить кеш, а потом заново включить
  7. добавлю, в настройках группы - социальные - включить "Может просматривать, кто изменил репутацию"
  8. Было такое у одного знакомого, когда он поменял версию PHP 5.6 на 7.0... Когда вернул, все восстановилось
  9. https://community.invisionpower.com/files/file/7331-birthday-in-registration-screen/
  10. @stok Чуть выровнял иконку репы с остальными иконками получилось как-то так: .wa_rep_all { margin-top: -1px; } .wa_rep_all a { border-radius: 5px; padding: 3px 5px; background: #FFF none repeat scroll 0% 0%; font-weight: 600; } .wa_rep_all > a .fa, .wa_rep_all > a .fa { font-size: 12px !important; } .wa_rep_all_green { color: #5F7A47 !important; } .wa_rep_all_red { color: #8C3737 !important; } .wa_rep_all_white { color: #B3B3B3 !important; }
  11. там же найдите код: #elChatbox { background: #E4E4E4; border: 1px solid #D6D6D6; color: #5C6875 !important; font-weight: 700; font-size: 13px !important; font-family: 'PT Sans',sans-serif; -moz-border-radius: 1px; -webkit-border-top-left-radius: 1px; -webkit-border-top-right-radius: 1px; border-radius: 3px; text-shadow: #E4E4E4 0 1px 1px; margin-bottom: 5px !important; box-shadow: 0 1px 6px 1px rgba(0,0,0,0.1); border-bottom: 1px solid #D6D6D3; margin: 0; padding: 5px 5px 5px 10px; line-height: 27px; } Ваш код будет немного отличаться, т.к. этот я взял с мафии... Измените строку background: #ваш цвет; на background: transparent;
  12. прям в коде можете сделать пробел >"пробел" Нравится< @Escape я правильно понял, что вы делаете на примере предыдущей темы?
  13. к сожалению с тройкой дел не имел... Техническая поддержка IP.Board
  14. я так понимаю, что у вас тройка, а тему создали в разделе "Техническая поддержка IPS Community Suite 4" ответ был до того, как вы выложили скрин
  15. админка - система - возможности - управление меню - делаете все, что хотите
  16. в стилях - шаблоны - core - front - global - reputation свой сохраняете и меняете на этот: {{if $content instanceof \IPS\Content\Reputation and settings.reputation_enabled}} <div data-controller='core.front.core.reputation' class='ipsClearfix {{if $extraClass}}{$extraClass}{{endif}}'> {{if settings.reputation_point_types == 'like'}} {{if $content->canGiveReputation( 1 ) || $content->canGiveReputation( -1 ) || $content->likeBlurb()}} <div class='ipsLikeRep ipsPos_right ipsResponsive_noFloat'> {{if $content->likeBlurb()}} <span class='ipsLike_contents'>{$content->likeBlurb()|raw}</span> {{endif}} {{if $content->canGiveReputation( 1 )}} <a href='{$content->url( 'rep' )->setQueryString( 'rep', 1 )->csrf()}' data-action="giveReputation" class='ipsButton ipsButton_like ipsButton_alternate'><i class='fa fa-heart'></i> <span class='ipsHide' data-role='repCount'>{$content->reputation()}</span> {lang="like"}</a> {{endif}} {{if $content->canGiveReputation( -1 )}} <a href='{$content->url( 'rep' )->setQueryString( 'rep', -1 )->csrf()}' data-action="giveReputation" class='ipsButton ipsButton_like ipsButton_veryLight'><i class='fa fa-times'></i> <span class='ipsHide' data-role='repCount'>{$content->reputation()}</span> {lang="unlike"}</a> {{endif}} </div> {{endif}} {{else}} <div class='ipsLikeRep ipsPos_right'> {{if $content->canGiveReputation( 1 )}} <a href='{$content->url( 'rep' )->setQueryString( 'rep', 1 )->csrf()}' data-action="giveReputation" class='ipsButton ipsButton_rep ipsButton_repUp'>Нравится <i class='fa fa-thumbs-up'></i></a> {{endif}} {{if $content->canGiveReputation( -1 )}} <a href='{$content->url( 'rep' )->setQueryString( 'rep', -1 )->csrf()}' data-action="giveReputation" class='ipsButton ipsButton_rep ipsButton_repDown'>Не нравится <i class='fa fa-thumbs-down'></i></a> {{endif}} {{if settings.reputation_show_content}} {{if member.group['gbw_view_reps']}} <a href='{$content->url( 'showRep' )}' data-ipsDialog data-ipsDialog-size='narrow' data-ipsDialog-title='{lang="rep_log_title"}' title='{lang="see_who_repped"}' data-ipsTooltip class='ipsReputation_count ipsType_blendLinks {{if $content->reputation() < 0}}ipsType_negative{{elseif $content->reputation() > 0}}ipsType_positive{{else}}ipsType_neutral{{endif}}'><i class='fa fa-heart ipsType_small'></i> {$content->reputation()}</a> {{else}} <span class='ipsReputation_count ipsType_blendLinks {{if $content->reputation() < 0}}ipsType_negative{{elseif $content->reputation() > 0}}ipsType_positive{{else}}ipsType_neutral{{endif}}'><i class='fa fa-heart ipsType_small'></i> {$content->reputation()}</span> {{endif}} {{endif}} </div> {{endif}} </div> {{endif}}
  17. тестовый аккаунт есть на форуме? Дайте данные в личку (просто я использую на своем только кнопку "Нравится") я себе так сделал
×
×
  • Создать...