БиБиК Posted May 24, 2012 Share Posted May 24, 2012 Хотелось бы узнать как изменить показ сообщений,Благодарностей хука "Ajax_Thanks_1.0.7_Rus" на что то подобное этому : Вместо : 545 сообщений Сделать Сообщений: 545 0 благодарностей Сделать Благодарностей : 0 и еще хотелось бы узнать как отключить показ предупреждений под аватаром Link to comment Share on other sites More sharing options...
Doogle Posted May 24, 2012 Share Posted May 24, 2012 1. АЦ -> Внешний вид -> Шаблон -> Глобальные -> userInfoPane {parse expression="$this->registry->getClass('class_localization')->formatNumber( intval( $author['posts'] ) )"} {$this->lang->words['m_posts']} -->> Сообщений: {parse expression="$this->registry->getClass('class_localization')->formatNumber( intval( $author['posts'] ) )"} 2. Либо в самом хуке поменять местами нужно значение и слово, либо в шаблоне. БиБиК and Respected 2 Link to comment Share on other sites More sharing options...
Respected Posted May 24, 2012 Share Posted May 24, 2012 1) Открываем шаблон userInfoPane из группы Глобальные: Найти: {parse expression="$this->registry->getClass('class_localization')->formatNumber( intval( $author['posts'] ) )"} {$this->lang->words['m_posts']} Заменить на: Сообщений: {parse expression="$this->registry->getClass('class_localization')->formatNumber( intval( $author['posts'] ) )"} [/code] 2) Открываем шаблон ajaxThankedCount из группы Темы: Найти: [code] {$author['thanked']} {$this->lang->words['en30_thanks']} [/code] Заменить на: [code] Благодарностей: {$author['thanked']} [/code] 3) Отключаем отображение предупреждений: в шаблоне userInfoPane найти: [code] <if test="authorwarn:|:$author['show_warn']"> <li> <if test="$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> [/code] Заменить на: [CODE] <!-- <if test="authorwarn:|:$author['show_warn']"> <li> <if test="$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> --> [/code] БиБиК 1 Link to comment Share on other sites More sharing options...
БиБиК Posted May 24, 2012 Author Share Posted May 24, 2012 Doogle,Respected, Спасибо Link to comment Share on other sites More sharing options...
Recommended Posts