Jump to content

Sirius

Пользователи
  • Регистрация

  • В сети

Reputation Activity

  1. Like
    Sirius got a reaction from sandul in Ник картинкой, репутация, шаблон.   
    Заходим в шаблон "userInfoPane" и находим код:
    <if test="authorwarn:|:$author['show_warn']"> <li> <if test="hasWarningId:|:$options['wl_id']"> <img src='{$this->settings['img_url']}/warn.png' class='clickable' onclick='warningPopup( this, {$options['wl_id']} )' title='{$this->lang->words['warnings_issued']}' /> </if> <a class='desc lighter blend_links' href='{parse url="app=members&module=profile&section=warnings&member={$author['member_id']}&from_app={$this->request['app']}&from_id1={$contentid}&from_id2={$options['id2']}" base="public"}' id='warn_link_{$contentid}_{$author['member_id']}' title='{$this->lang->words['warn_view_history']}'>{parse expression="sprintf( $this->lang->words['warn_status'], $author['warn_level'] )"}</a> </li> </if> </ul>  
    И сразу под ним добавить:
    <!-- REPUTATION BAR --> <if test="cardRep:|:$this->settings['reputation_enabled'] && $this->settings['reputation_show_profile']"> <div class="reputation-bg" data-tooltip="Репутация: {$author['pp_reputation_points']}"> <div class="reputation-bar <!-- GREY BAR --> <if test="$author['pp_reputation_points']==0">gray</if> <!-- /GREY BAR --> <!-- RED BARS --> <if test="$author['pp_reputation_points']<0 && $author['pp_reputation_points']>=-15">red width20</if> <if test="$author['pp_reputation_points']<-15 && $author['pp_reputation_points']>=-30">red width40</if> <if test="$author['pp_reputation_points']<-30 && $author['pp_reputation_points']>=-45">red width60</if> <if test="$author['pp_reputation_points']<-45 && $author['pp_reputation_points']>=-60">red width80</if> <if test="$author['pp_reputation_points']<-60">red</if> <!-- /RED BAR --> <!-- BLUE BARS --> <if test="$author['pp_reputation_points']>=1 && $author['pp_reputation_points']<=10">blue width20</if> <if test="$author['pp_reputation_points']>10 && $author['pp_reputation_points']<=20">blue width40</if> <if test="$author['pp_reputation_points']>20 && $author['pp_reputation_points']<=30">blue width60</if> <if test="$author['pp_reputation_points']>30 && $author['pp_reputation_points']<=40">blue width80</if> <if test="$author['pp_reputation_points']>40 && $author['pp_reputation_points']<=50">blue</if> <!-- /BLUE BARS --> <!-- GREEN BARS --> <if test="$author['pp_reputation_points']>50 && $author['pp_reputation_points']<=70">green width20</if> <if test="$author['pp_reputation_points']>70 && $author['pp_reputation_points']<=90">green width40</if> <if test="$author['pp_reputation_points']>90 && $author['pp_reputation_points']<=110">green width60</if> <if test="$author['pp_reputation_points']>110 && $author['pp_reputation_points']<=130">green width80</if> <if test="$author['pp_reputation_points']>130 && $author['pp_reputation_points']<=150">green</if> <!-- /GREEN BARS --> <!-- GOLD BARS --> <if test="$author['pp_reputation_points']>150 && $author['pp_reputation_points']<=190">gold width20</if> <if test="$author['pp_reputation_points']>190 && $author['pp_reputation_points']<=230">gold width40</if> <if test="$author['pp_reputation_points']>230 && $author['pp_reputation_points']<=270">gold width60</if> <if test="$author['pp_reputation_points']>270 && $author['pp_reputation_points']<=310">gold width80</if> <if test="$author['pp_reputation_points']>310">gold</if> <!-- /GOLD BARS --> "> {$author['pp_reputation_points']} </div> </div> </if> <!-- /REPUTATION BAR -->  
     
    В шаблонах showCard и profileModern ( шаблон профили пользователей)
    Замените дефольтный код репутации этим:
    <!-- REPUTATION BAR --> <if test="cardRep:|:$this->settings['reputation_enabled'] && $this->settings['reputation_show_profile']"> <div class="reputation-bg" data-tooltip="Репутация: {$member['pp_reputation_points']}"> <div class="reputation-bar <!-- GREY BAR --> <if test="$member['pp_reputation_points']==0">gray</if> <!-- /GREY BAR --> <!-- RED BARS --> <if test="$member['pp_reputation_points']<0 && $member['pp_reputation_points']>=-15">red width20</if> <if test="$member['pp_reputation_points']<-15 && $member['pp_reputation_points']>=-30">red width40</if> <if test="$member['pp_reputation_points']<-30 && $member['pp_reputation_points']>=-45">red width60</if> <if test="$member['pp_reputation_points']<-45 && $member['pp_reputation_points']>=-60">red width80</if> <if test="$member['pp_reputation_points']<-60">red</if> <!-- /RED BAR --> <!-- BLUE BARS --> <if test="$member['pp_reputation_points']>=1 && $member['pp_reputation_points']<=10">blue width20</if> <if test="$member['pp_reputation_points']>10 && $member['pp_reputation_points']<=20">blue width40</if> <if test="$member['pp_reputation_points']>20 && $member['pp_reputation_points']<=30">blue width60</if> <if test="$member['pp_reputation_points']>30 && $member['pp_reputation_points']<=40">blue width80</if> <if test="$member['pp_reputation_points']>40 && $member['pp_reputation_points']<=50">blue</if> <!-- /BLUE BARS --> <!-- GREEN BARS --> <if test="$member['pp_reputation_points']>50 && $member['pp_reputation_points']<=70">green width20</if> <if test="$member['pp_reputation_points']>70 && $member['pp_reputation_points']<=90">green width40</if> <if test="$member['pp_reputation_points']>90 && $member['pp_reputation_points']<=110">green width60</if> <if test="$member['pp_reputation_points']>110 && $member['pp_reputation_points']<=130">green width80</if> <if test="$member['pp_reputation_points']>130 && $member['pp_reputation_points']<=150">green</if> <!-- /GREEN BARS --> <!-- GOLD BARS --> <if test="$member['pp_reputation_points']>150 && $member['pp_reputation_points']<=190">gold width20</if> <if test="$member['pp_reputation_points']>190 && $member['pp_reputation_points']<=230">gold width40</if> <if test="$member['pp_reputation_points']>230 && $member['pp_reputation_points']<=270">gold width60</if> <if test="$member['pp_reputation_points']>270 && $member['pp_reputation_points']<=310">gold width80</if> <if test="$member['pp_reputation_points']>310">gold</if> <!-- /GOLD BARS --> "> {$member['pp_reputation_points']} </div> </div> </if> <!-- /REPUTATION BAR -->  
    В CSS добавить:
    /****************************************************** Reputation Bar ******************************************************/ .reputation-bg{ background:#e4e4e4; background:-moz-linear-gradient(top, #e4e4e4 0%, #f7f7f7 100%); background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#e4e4e4), color-stop(100%,#f7f7f7)); background:-webkit-linear-gradient(top, #e4e4e4 0%,#f7f7f7 100%); background:-o-linear-gradient(top, #e4e4e4 0%,#f7f7f7 100%); background:-ms-linear-gradient(top, #e4e4e4 0%,#f7f7f7 100%); background:linear-gradient(to bottom, #e4e4e4 0%,#f7f7f7 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#e4e4e4', endColorstr='#f7f7f7',GradientType=0); border:1px solid #e4e4e4; border-radius:6px; -moz-border-radius:6px; -webkit-border-radius:6px } .reputation-bar{ background:url('reputation_bar.png') repeat-x 0 0; border:1px solid; border-radius:6px; -moz-border-radius:6px; -webkit-border-radius:6px; box-shadow:inset 0 1px 0 rgba(255,255,255,0.3); -moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.3); -webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.3); font:12px/23px Calibri,Arial,Tahoma,sans-serif; height:21px; margin:1px; text-align:center; text-shadow:0 1px 0 rgba(255,255,255,0.3) } .reputation-bar.gray{background-color:#a2a2a2;border-color:#6a6a6a;color:#6b6b6b} .reputation-bar.red{background-color:#b00000;border-color:#910000;color:#6b0000} .reputation-bar.blue{background-color:#008cd5;border-color:#006aa1;color:#00537f} .reputation-bar.green{background-color:#20a601;border-color:#188000;color:#177a00} .reputation-bar.gold{background-color:#ccb200;border-color:#b49d00;color:#958200} .reputation-bar.width20{width:20%} .reputation-bar.width40{width:40%} .reputation-bar.width60{width:60%} .reputation-bar.width80{width:80%}  
    Чтобы добавить новый цвет добавляем новое свойство CSS:
    .reputation-bar.ЦВЕТ{background-color:#ЦВЕТ;border-color:#ЦВЕТ;color:#ЦВЕТ}  
    Чтобы добавить новую шкалу репутации, добавляем допол. код:
    <!-- ЦВЕТ BARS --> <if test="$member['pp_reputation_points']>БАЛЛЫ && $member['pp_reputation_points']<=БАЛЛЫ">ЦВЕТ width20</if> <if test="$member['pp_reputation_points']>БАЛЛЫ && $member['pp_reputation_points']<=БАЛЛЫ">ЦВЕТ width40</if> <if test="$member['pp_reputation_points']>БАЛЛЫ && $member['pp_reputation_points']<=БАЛЛЫ">ЦВЕТ width60</if> <if test="$member['pp_reputation_points']>БАЛЛЫ && $member['pp_reputation_points']<=БАЛЛЫ">ЦВЕТ width80</if> <if test="$member['pp_reputation_points']>БАЛЛЫ && $member['pp_reputation_points']<=БАЛЛЫ">ЦВЕТ</if> <!-- /ЦВЕТ BARS -->  
    Загружаем в папку с изображениями фон reputation_bar.png , который находиться чуть ниже.
    reputation_bar.zip
  2. Like
    Sirius got a reaction from Respected in Ник картинкой, репутация, шаблон.   
    Заходим в шаблон "userInfoPane" и находим код:
    <if test="authorwarn:|:$author['show_warn']"> <li> <if test="hasWarningId:|:$options['wl_id']"> <img src='{$this->settings['img_url']}/warn.png' class='clickable' onclick='warningPopup( this, {$options['wl_id']} )' title='{$this->lang->words['warnings_issued']}' /> </if> <a class='desc lighter blend_links' href='{parse url="app=members&module=profile&section=warnings&member={$author['member_id']}&from_app={$this->request['app']}&from_id1={$contentid}&from_id2={$options['id2']}" base="public"}' id='warn_link_{$contentid}_{$author['member_id']}' title='{$this->lang->words['warn_view_history']}'>{parse expression="sprintf( $this->lang->words['warn_status'], $author['warn_level'] )"}</a> </li> </if> </ul>  
    И сразу под ним добавить:
    <!-- REPUTATION BAR --> <if test="cardRep:|:$this->settings['reputation_enabled'] && $this->settings['reputation_show_profile']"> <div class="reputation-bg" data-tooltip="Репутация: {$author['pp_reputation_points']}"> <div class="reputation-bar <!-- GREY BAR --> <if test="$author['pp_reputation_points']==0">gray</if> <!-- /GREY BAR --> <!-- RED BARS --> <if test="$author['pp_reputation_points']<0 && $author['pp_reputation_points']>=-15">red width20</if> <if test="$author['pp_reputation_points']<-15 && $author['pp_reputation_points']>=-30">red width40</if> <if test="$author['pp_reputation_points']<-30 && $author['pp_reputation_points']>=-45">red width60</if> <if test="$author['pp_reputation_points']<-45 && $author['pp_reputation_points']>=-60">red width80</if> <if test="$author['pp_reputation_points']<-60">red</if> <!-- /RED BAR --> <!-- BLUE BARS --> <if test="$author['pp_reputation_points']>=1 && $author['pp_reputation_points']<=10">blue width20</if> <if test="$author['pp_reputation_points']>10 && $author['pp_reputation_points']<=20">blue width40</if> <if test="$author['pp_reputation_points']>20 && $author['pp_reputation_points']<=30">blue width60</if> <if test="$author['pp_reputation_points']>30 && $author['pp_reputation_points']<=40">blue width80</if> <if test="$author['pp_reputation_points']>40 && $author['pp_reputation_points']<=50">blue</if> <!-- /BLUE BARS --> <!-- GREEN BARS --> <if test="$author['pp_reputation_points']>50 && $author['pp_reputation_points']<=70">green width20</if> <if test="$author['pp_reputation_points']>70 && $author['pp_reputation_points']<=90">green width40</if> <if test="$author['pp_reputation_points']>90 && $author['pp_reputation_points']<=110">green width60</if> <if test="$author['pp_reputation_points']>110 && $author['pp_reputation_points']<=130">green width80</if> <if test="$author['pp_reputation_points']>130 && $author['pp_reputation_points']<=150">green</if> <!-- /GREEN BARS --> <!-- GOLD BARS --> <if test="$author['pp_reputation_points']>150 && $author['pp_reputation_points']<=190">gold width20</if> <if test="$author['pp_reputation_points']>190 && $author['pp_reputation_points']<=230">gold width40</if> <if test="$author['pp_reputation_points']>230 && $author['pp_reputation_points']<=270">gold width60</if> <if test="$author['pp_reputation_points']>270 && $author['pp_reputation_points']<=310">gold width80</if> <if test="$author['pp_reputation_points']>310">gold</if> <!-- /GOLD BARS --> "> {$author['pp_reputation_points']} </div> </div> </if> <!-- /REPUTATION BAR -->  
     
    В шаблонах showCard и profileModern ( шаблон профили пользователей)
    Замените дефольтный код репутации этим:
    <!-- REPUTATION BAR --> <if test="cardRep:|:$this->settings['reputation_enabled'] && $this->settings['reputation_show_profile']"> <div class="reputation-bg" data-tooltip="Репутация: {$member['pp_reputation_points']}"> <div class="reputation-bar <!-- GREY BAR --> <if test="$member['pp_reputation_points']==0">gray</if> <!-- /GREY BAR --> <!-- RED BARS --> <if test="$member['pp_reputation_points']<0 && $member['pp_reputation_points']>=-15">red width20</if> <if test="$member['pp_reputation_points']<-15 && $member['pp_reputation_points']>=-30">red width40</if> <if test="$member['pp_reputation_points']<-30 && $member['pp_reputation_points']>=-45">red width60</if> <if test="$member['pp_reputation_points']<-45 && $member['pp_reputation_points']>=-60">red width80</if> <if test="$member['pp_reputation_points']<-60">red</if> <!-- /RED BAR --> <!-- BLUE BARS --> <if test="$member['pp_reputation_points']>=1 && $member['pp_reputation_points']<=10">blue width20</if> <if test="$member['pp_reputation_points']>10 && $member['pp_reputation_points']<=20">blue width40</if> <if test="$member['pp_reputation_points']>20 && $member['pp_reputation_points']<=30">blue width60</if> <if test="$member['pp_reputation_points']>30 && $member['pp_reputation_points']<=40">blue width80</if> <if test="$member['pp_reputation_points']>40 && $member['pp_reputation_points']<=50">blue</if> <!-- /BLUE BARS --> <!-- GREEN BARS --> <if test="$member['pp_reputation_points']>50 && $member['pp_reputation_points']<=70">green width20</if> <if test="$member['pp_reputation_points']>70 && $member['pp_reputation_points']<=90">green width40</if> <if test="$member['pp_reputation_points']>90 && $member['pp_reputation_points']<=110">green width60</if> <if test="$member['pp_reputation_points']>110 && $member['pp_reputation_points']<=130">green width80</if> <if test="$member['pp_reputation_points']>130 && $member['pp_reputation_points']<=150">green</if> <!-- /GREEN BARS --> <!-- GOLD BARS --> <if test="$member['pp_reputation_points']>150 && $member['pp_reputation_points']<=190">gold width20</if> <if test="$member['pp_reputation_points']>190 && $member['pp_reputation_points']<=230">gold width40</if> <if test="$member['pp_reputation_points']>230 && $member['pp_reputation_points']<=270">gold width60</if> <if test="$member['pp_reputation_points']>270 && $member['pp_reputation_points']<=310">gold width80</if> <if test="$member['pp_reputation_points']>310">gold</if> <!-- /GOLD BARS --> "> {$member['pp_reputation_points']} </div> </div> </if> <!-- /REPUTATION BAR -->  
    В CSS добавить:
    /****************************************************** Reputation Bar ******************************************************/ .reputation-bg{ background:#e4e4e4; background:-moz-linear-gradient(top, #e4e4e4 0%, #f7f7f7 100%); background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#e4e4e4), color-stop(100%,#f7f7f7)); background:-webkit-linear-gradient(top, #e4e4e4 0%,#f7f7f7 100%); background:-o-linear-gradient(top, #e4e4e4 0%,#f7f7f7 100%); background:-ms-linear-gradient(top, #e4e4e4 0%,#f7f7f7 100%); background:linear-gradient(to bottom, #e4e4e4 0%,#f7f7f7 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#e4e4e4', endColorstr='#f7f7f7',GradientType=0); border:1px solid #e4e4e4; border-radius:6px; -moz-border-radius:6px; -webkit-border-radius:6px } .reputation-bar{ background:url('reputation_bar.png') repeat-x 0 0; border:1px solid; border-radius:6px; -moz-border-radius:6px; -webkit-border-radius:6px; box-shadow:inset 0 1px 0 rgba(255,255,255,0.3); -moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.3); -webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.3); font:12px/23px Calibri,Arial,Tahoma,sans-serif; height:21px; margin:1px; text-align:center; text-shadow:0 1px 0 rgba(255,255,255,0.3) } .reputation-bar.gray{background-color:#a2a2a2;border-color:#6a6a6a;color:#6b6b6b} .reputation-bar.red{background-color:#b00000;border-color:#910000;color:#6b0000} .reputation-bar.blue{background-color:#008cd5;border-color:#006aa1;color:#00537f} .reputation-bar.green{background-color:#20a601;border-color:#188000;color:#177a00} .reputation-bar.gold{background-color:#ccb200;border-color:#b49d00;color:#958200} .reputation-bar.width20{width:20%} .reputation-bar.width40{width:40%} .reputation-bar.width60{width:60%} .reputation-bar.width80{width:80%}  
    Чтобы добавить новый цвет добавляем новое свойство CSS:
    .reputation-bar.ЦВЕТ{background-color:#ЦВЕТ;border-color:#ЦВЕТ;color:#ЦВЕТ}  
    Чтобы добавить новую шкалу репутации, добавляем допол. код:
    <!-- ЦВЕТ BARS --> <if test="$member['pp_reputation_points']>БАЛЛЫ && $member['pp_reputation_points']<=БАЛЛЫ">ЦВЕТ width20</if> <if test="$member['pp_reputation_points']>БАЛЛЫ && $member['pp_reputation_points']<=БАЛЛЫ">ЦВЕТ width40</if> <if test="$member['pp_reputation_points']>БАЛЛЫ && $member['pp_reputation_points']<=БАЛЛЫ">ЦВЕТ width60</if> <if test="$member['pp_reputation_points']>БАЛЛЫ && $member['pp_reputation_points']<=БАЛЛЫ">ЦВЕТ width80</if> <if test="$member['pp_reputation_points']>БАЛЛЫ && $member['pp_reputation_points']<=БАЛЛЫ">ЦВЕТ</if> <!-- /ЦВЕТ BARS -->  
    Загружаем в папку с изображениями фон reputation_bar.png , который находиться чуть ниже.
    reputation_bar.zip
  3. Like
    Sirius got a reaction from AimFIre in Ник картинкой, репутация, шаблон.   
    Заходим в шаблон "userInfoPane" и находим код:
    <if test="authorwarn:|:$author['show_warn']"> <li> <if test="hasWarningId:|:$options['wl_id']"> <img src='{$this->settings['img_url']}/warn.png' class='clickable' onclick='warningPopup( this, {$options['wl_id']} )' title='{$this->lang->words['warnings_issued']}' /> </if> <a class='desc lighter blend_links' href='{parse url="app=members&module=profile&section=warnings&member={$author['member_id']}&from_app={$this->request['app']}&from_id1={$contentid}&from_id2={$options['id2']}" base="public"}' id='warn_link_{$contentid}_{$author['member_id']}' title='{$this->lang->words['warn_view_history']}'>{parse expression="sprintf( $this->lang->words['warn_status'], $author['warn_level'] )"}</a> </li> </if> </ul>  
    И сразу под ним добавить:
    <!-- REPUTATION BAR --> <if test="cardRep:|:$this->settings['reputation_enabled'] && $this->settings['reputation_show_profile']"> <div class="reputation-bg" data-tooltip="Репутация: {$author['pp_reputation_points']}"> <div class="reputation-bar <!-- GREY BAR --> <if test="$author['pp_reputation_points']==0">gray</if> <!-- /GREY BAR --> <!-- RED BARS --> <if test="$author['pp_reputation_points']<0 && $author['pp_reputation_points']>=-15">red width20</if> <if test="$author['pp_reputation_points']<-15 && $author['pp_reputation_points']>=-30">red width40</if> <if test="$author['pp_reputation_points']<-30 && $author['pp_reputation_points']>=-45">red width60</if> <if test="$author['pp_reputation_points']<-45 && $author['pp_reputation_points']>=-60">red width80</if> <if test="$author['pp_reputation_points']<-60">red</if> <!-- /RED BAR --> <!-- BLUE BARS --> <if test="$author['pp_reputation_points']>=1 && $author['pp_reputation_points']<=10">blue width20</if> <if test="$author['pp_reputation_points']>10 && $author['pp_reputation_points']<=20">blue width40</if> <if test="$author['pp_reputation_points']>20 && $author['pp_reputation_points']<=30">blue width60</if> <if test="$author['pp_reputation_points']>30 && $author['pp_reputation_points']<=40">blue width80</if> <if test="$author['pp_reputation_points']>40 && $author['pp_reputation_points']<=50">blue</if> <!-- /BLUE BARS --> <!-- GREEN BARS --> <if test="$author['pp_reputation_points']>50 && $author['pp_reputation_points']<=70">green width20</if> <if test="$author['pp_reputation_points']>70 && $author['pp_reputation_points']<=90">green width40</if> <if test="$author['pp_reputation_points']>90 && $author['pp_reputation_points']<=110">green width60</if> <if test="$author['pp_reputation_points']>110 && $author['pp_reputation_points']<=130">green width80</if> <if test="$author['pp_reputation_points']>130 && $author['pp_reputation_points']<=150">green</if> <!-- /GREEN BARS --> <!-- GOLD BARS --> <if test="$author['pp_reputation_points']>150 && $author['pp_reputation_points']<=190">gold width20</if> <if test="$author['pp_reputation_points']>190 && $author['pp_reputation_points']<=230">gold width40</if> <if test="$author['pp_reputation_points']>230 && $author['pp_reputation_points']<=270">gold width60</if> <if test="$author['pp_reputation_points']>270 && $author['pp_reputation_points']<=310">gold width80</if> <if test="$author['pp_reputation_points']>310">gold</if> <!-- /GOLD BARS --> "> {$author['pp_reputation_points']} </div> </div> </if> <!-- /REPUTATION BAR -->  
     
    В шаблонах showCard и profileModern ( шаблон профили пользователей)
    Замените дефольтный код репутации этим:
    <!-- REPUTATION BAR --> <if test="cardRep:|:$this->settings['reputation_enabled'] && $this->settings['reputation_show_profile']"> <div class="reputation-bg" data-tooltip="Репутация: {$member['pp_reputation_points']}"> <div class="reputation-bar <!-- GREY BAR --> <if test="$member['pp_reputation_points']==0">gray</if> <!-- /GREY BAR --> <!-- RED BARS --> <if test="$member['pp_reputation_points']<0 && $member['pp_reputation_points']>=-15">red width20</if> <if test="$member['pp_reputation_points']<-15 && $member['pp_reputation_points']>=-30">red width40</if> <if test="$member['pp_reputation_points']<-30 && $member['pp_reputation_points']>=-45">red width60</if> <if test="$member['pp_reputation_points']<-45 && $member['pp_reputation_points']>=-60">red width80</if> <if test="$member['pp_reputation_points']<-60">red</if> <!-- /RED BAR --> <!-- BLUE BARS --> <if test="$member['pp_reputation_points']>=1 && $member['pp_reputation_points']<=10">blue width20</if> <if test="$member['pp_reputation_points']>10 && $member['pp_reputation_points']<=20">blue width40</if> <if test="$member['pp_reputation_points']>20 && $member['pp_reputation_points']<=30">blue width60</if> <if test="$member['pp_reputation_points']>30 && $member['pp_reputation_points']<=40">blue width80</if> <if test="$member['pp_reputation_points']>40 && $member['pp_reputation_points']<=50">blue</if> <!-- /BLUE BARS --> <!-- GREEN BARS --> <if test="$member['pp_reputation_points']>50 && $member['pp_reputation_points']<=70">green width20</if> <if test="$member['pp_reputation_points']>70 && $member['pp_reputation_points']<=90">green width40</if> <if test="$member['pp_reputation_points']>90 && $member['pp_reputation_points']<=110">green width60</if> <if test="$member['pp_reputation_points']>110 && $member['pp_reputation_points']<=130">green width80</if> <if test="$member['pp_reputation_points']>130 && $member['pp_reputation_points']<=150">green</if> <!-- /GREEN BARS --> <!-- GOLD BARS --> <if test="$member['pp_reputation_points']>150 && $member['pp_reputation_points']<=190">gold width20</if> <if test="$member['pp_reputation_points']>190 && $member['pp_reputation_points']<=230">gold width40</if> <if test="$member['pp_reputation_points']>230 && $member['pp_reputation_points']<=270">gold width60</if> <if test="$member['pp_reputation_points']>270 && $member['pp_reputation_points']<=310">gold width80</if> <if test="$member['pp_reputation_points']>310">gold</if> <!-- /GOLD BARS --> "> {$member['pp_reputation_points']} </div> </div> </if> <!-- /REPUTATION BAR -->  
    В CSS добавить:
    /****************************************************** Reputation Bar ******************************************************/ .reputation-bg{ background:#e4e4e4; background:-moz-linear-gradient(top, #e4e4e4 0%, #f7f7f7 100%); background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#e4e4e4), color-stop(100%,#f7f7f7)); background:-webkit-linear-gradient(top, #e4e4e4 0%,#f7f7f7 100%); background:-o-linear-gradient(top, #e4e4e4 0%,#f7f7f7 100%); background:-ms-linear-gradient(top, #e4e4e4 0%,#f7f7f7 100%); background:linear-gradient(to bottom, #e4e4e4 0%,#f7f7f7 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#e4e4e4', endColorstr='#f7f7f7',GradientType=0); border:1px solid #e4e4e4; border-radius:6px; -moz-border-radius:6px; -webkit-border-radius:6px } .reputation-bar{ background:url('reputation_bar.png') repeat-x 0 0; border:1px solid; border-radius:6px; -moz-border-radius:6px; -webkit-border-radius:6px; box-shadow:inset 0 1px 0 rgba(255,255,255,0.3); -moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.3); -webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.3); font:12px/23px Calibri,Arial,Tahoma,sans-serif; height:21px; margin:1px; text-align:center; text-shadow:0 1px 0 rgba(255,255,255,0.3) } .reputation-bar.gray{background-color:#a2a2a2;border-color:#6a6a6a;color:#6b6b6b} .reputation-bar.red{background-color:#b00000;border-color:#910000;color:#6b0000} .reputation-bar.blue{background-color:#008cd5;border-color:#006aa1;color:#00537f} .reputation-bar.green{background-color:#20a601;border-color:#188000;color:#177a00} .reputation-bar.gold{background-color:#ccb200;border-color:#b49d00;color:#958200} .reputation-bar.width20{width:20%} .reputation-bar.width40{width:40%} .reputation-bar.width60{width:60%} .reputation-bar.width80{width:80%}  
    Чтобы добавить новый цвет добавляем новое свойство CSS:
    .reputation-bar.ЦВЕТ{background-color:#ЦВЕТ;border-color:#ЦВЕТ;color:#ЦВЕТ}  
    Чтобы добавить новую шкалу репутации, добавляем допол. код:
    <!-- ЦВЕТ BARS --> <if test="$member['pp_reputation_points']>БАЛЛЫ && $member['pp_reputation_points']<=БАЛЛЫ">ЦВЕТ width20</if> <if test="$member['pp_reputation_points']>БАЛЛЫ && $member['pp_reputation_points']<=БАЛЛЫ">ЦВЕТ width40</if> <if test="$member['pp_reputation_points']>БАЛЛЫ && $member['pp_reputation_points']<=БАЛЛЫ">ЦВЕТ width60</if> <if test="$member['pp_reputation_points']>БАЛЛЫ && $member['pp_reputation_points']<=БАЛЛЫ">ЦВЕТ width80</if> <if test="$member['pp_reputation_points']>БАЛЛЫ && $member['pp_reputation_points']<=БАЛЛЫ">ЦВЕТ</if> <!-- /ЦВЕТ BARS -->  
    Загружаем в папку с изображениями фон reputation_bar.png , который находиться чуть ниже.
    reputation_bar.zip
  4. Like
    Sirius got a reaction from AimFIre in Ник картинкой, репутация, шаблон.   
    в ipb_styles.css найди:
    .custom_fields { color: #818181; margin-top: 8px; }  
    и добавь ниже:
    .custom_fields li { background: #FFFFFF; padding:4px; margin-top:2px; border:1px solid #DDDDDD; border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; text-align:center; width:100%; }
  5. Like
    Sirius got a reaction from AimFIre in Ник картинкой, репутация, шаблон.   
    в css в самый низ, В шаблонах showCard и profileModern поменять коды на этот, то есть в обеих шаблонах поставь этот код:
    <!-- REPUTATION BAR --> <if test="cardRep:|:$this->settings['reputation_enabled'] && $this->settings['reputation_show_profile']"> <div class="reputation-bg" data-tooltip="Репутация: {$member['pp_reputation_points']}"> <div class="reputation-bar <!-- GREY BAR --> <if test="$member['pp_reputation_points']==0">gray</if> <!-- /GREY BAR --> <!-- RED BARS --> <if test="$member['pp_reputation_points']<0 && $member['pp_reputation_points']>=-15">red width20</if> <if test="$member['pp_reputation_points']<-15 && $member['pp_reputation_points']>=-30">red width40</if> <if test="$member['pp_reputation_points']<-30 && $member['pp_reputation_points']>=-45">red width60</if> <if test="$member['pp_reputation_points']<-45 && $member['pp_reputation_points']>=-60">red width80</if> <if test="$member['pp_reputation_points']<-60">red</if> <!-- /RED BAR --> <!-- BLUE BARS --> <if test="$member['pp_reputation_points']>=1 && $member['pp_reputation_points']<=10">blue width20</if> <if test="$member['pp_reputation_points']>10 && $member['pp_reputation_points']<=20">blue width40</if> <if test="$member['pp_reputation_points']>20 && $member['pp_reputation_points']<=30">blue width60</if> <if test="$member['pp_reputation_points']>30 && $member['pp_reputation_points']<=40">blue width80</if> <if test="$member['pp_reputation_points']>40 && $member['pp_reputation_points']<=50">blue</if> <!-- /BLUE BARS --> <!-- GREEN BARS --> <if test="$member['pp_reputation_points']>50 && $member['pp_reputation_points']<=70">green width20</if> <if test="$member['pp_reputation_points']>70 && $member['pp_reputation_points']<=90">green width40</if> <if test="$member['pp_reputation_points']>90 && $member['pp_reputation_points']<=110">green width60</if> <if test="$member['pp_reputation_points']>110 && $member['pp_reputation_points']<=130">green width80</if> <if test="$member['pp_reputation_points']>130 && $member['pp_reputation_points']<=150">green</if> <!-- /GREEN BARS --> <!-- GOLD BARS --> <if test="$member['pp_reputation_points']>150 && $member['pp_reputation_points']<=190">gold width20</if> <if test="$member['pp_reputation_points']>190 && $member['pp_reputation_points']<=230">gold width40</if> <if test="$member['pp_reputation_points']>230 && $member['pp_reputation_points']<=270">gold width60</if> <if test="$member['pp_reputation_points']>270 && $member['pp_reputation_points']<=310">gold width80</if> <if test="$member['pp_reputation_points']>310">gold</if> <!-- /GOLD BARS --> "> {$member['pp_reputation_points']} </div> </div> </if> <!-- /REPUTATION BAR -->  
    Это значит надо заменить на старый
  6. Like
    Sirius got a reaction from AimFIre in Ник картинкой, репутация, шаблон.   
    на первый вопрос , этот компонент приватный и доступен премиум аккуантам.. второй вопрос, поищу добавлю ссылку или само описание.. на третий вопрос тут даже baisik"ом не пахнет
  7. Like
    Sirius reacted to Doogle in С днём рождения, Doogle!   
    Ребят, очень приятно. Спасибо большое за поздравления
  8. Like
    Sirius got a reaction from Doogle in С днём рождения, Doogle!   
    присоединяюсь... С днем рождения 

  9. Like
    Sirius got a reaction from AUYKGN in Не отображаются картинки на форуме и АЦ   
    , скопируй все данные с этого файла а именно с  conf_global.php после возьми дефольтный conf_global.php с папки с нуллом, которую скачал с форума и вставь туда сохрани и этот же файл закинь на сервер... и еще ту строчку которую ты изменил может расскажешь что именно изменил.
  10. Like
    Sirius got a reaction from AUYKGN in Не отображаются картинки на форуме и АЦ   
    лучше спроси что он пытался сделать и что изменил. 
  11. Like
    Sirius got a reaction from hotsummer in Pinposts 1.2.0   
    Название: Pinposts 1.2.0
    Добавил: Sirius
    Добавлен: 14 Янв 2013
    Категория: Русские хуки и моды IP.Board всех версий.
    Автор локализации: Sirius
    Оригинальное название: Pinposts
    Версия IP.Board: 3.3.х

    Хук для прикрепления первого сообщения в теме. Прикрепленное сообщение отображается на всех страницах темы.


  12. Like
    Sirius got a reaction from DimanZM in Дополнительная информация   
    да нет не туда зашел.. рядом с пунктом Статистика должен быть пункт Другие приложения, тами и есть настройки этого приложения
  13. Like
    Sirius got a reaction from SoVeR in Sitemap   
    SoVeR,если версия 3.4.1 то она встроена, если ниже то качай IP.SEO и читай статьи настроек 
  14. Like
    Sirius got a reaction from egorea1999 in Продам шаблон   
    Извините но разницу в этом не вижу.
  15. Like
    Sirius reacted to Respected in Хук дополнительная информация   
    Дополнительную информацию можно добавить стандартными средствами. Меню IP.Downloads --> Дополнительные поля
  16. Like
    Sirius got a reaction from Respected in Перенос форума с локалхоста   
    перенеси все файлы на сервер, импортируй базу данных и conf_global.php пропиши данные подключения к бд.
  17. Like
    Sirius got a reaction from jack007 in Перенос форума с локалхоста   
    jack007, если у вас есть сервер, то там есть phpmyadmin, заходите туда и создаете базу например название forum и заливаете SQL запросом вашу базу , которая находилась на локалке, и не забудьте поставить кодировку utf_8, если Вы не знаете как все это сделать пишите в личку помогу. 
  18. Like
    , в настройках указал подключение к базе данных? 
  19. Like
    , зачем с офф, там демо версия, а это вроде нуленная 
  20. Like
    Sirius reacted to Don_Pedro_Sangre in Easy Pages 1.1.2   
    Компонент нужен мне или вам? Что/кто вам мешает его скачать и проверить? 
    Если он не работает на 3.3.х сообщите Администрации - исправим. 
     
    p. s. Я не вижу здесь сообщений "не работает на 3.3.х", а по поводу слухов:
    "Ходят слухи что не будет больше слухов, ходят сплетни будто сплетни запретят" 
  21. Like
    как уже сказали выше нужен скрипт Supex Dumper 
    Sypex Dumper Pro v2.0.9.zip
     
    Почитайте инструкцию которая находиться внутри
  22. Like
    ну на скрине же написано обновите и запустите процесс с того же файла
  23. Like
    Sirius got a reaction from egorea1999 in Pinposts 1.2.0   
    Название: Pinposts 1.2.0
    Добавил: Sirius
    Добавлен: 14 Янв 2013
    Категория: Русские хуки и моды IP.Board всех версий.
    Автор локализации: Sirius
    Оригинальное название: Pinposts
    Версия IP.Board: 3.3.х

    Хук для прикрепления первого сообщения в теме. Прикрепленное сообщение отображается на всех страницах темы.


  24. Like
    Sirius got a reaction from Don_Pedro_Sangre in Pinposts 1.2.0   
    Название: Pinposts 1.2.0
    Добавил: Sirius
    Добавлен: 14 Янв 2013
    Категория: Русские хуки и моды IP.Board всех версий.
    Автор локализации: Sirius
    Оригинальное название: Pinposts
    Версия IP.Board: 3.3.х

    Хук для прикрепления первого сообщения в теме. Прикрепленное сообщение отображается на всех страницах темы.


  25. Like
    Флаги прикрепил к первому сообщению