IgorPec Posted January 8, 2019 Share Posted January 8, 2019 On 1/3/2019 at 12:49 PM, newbie LAC said: Ok. I'll add new settings for next release That was super fast. Thank you! Link to comment Share on other sites More sharing options...
VladislavD Posted February 15, 2019 Share Posted February 15, 2019 Hello, how to make icons appear on a mobile device? Link to comment Share on other sites More sharing options...
newbie LAC Posted February 15, 2019 Author Share Posted February 15, 2019 1 minute ago, VladislavD said: Hello, how to make icons appear on a mobile device? Hello, Add in custom.css .nbSecGroupIcons.ipsResponsive_hidePhone { display: block !important; } Cyboman 1 Link to comment Share on other sites More sharing options...
VladislavD Posted February 15, 2019 Share Posted February 15, 2019 5 minutes ago, newbie LAC said: .nbSecGroupIcons.ipsResponsive_hidePhone { display: block !important; } The profile is super !! and in the posts? Link to comment Share on other sites More sharing options...
newbie LAC Posted February 15, 2019 Author Share Posted February 15, 2019 (edited) This doesn't work in posts. Where (place) do you want to show icons? Edited February 15, 2019 by newbie LAC Link to comment Share on other sites More sharing options...
VladislavD Posted February 15, 2019 Share Posted February 15, 2019 (edited) 29 минут назад, новичок лак сказал: Должна работать в обоих направлениях. Не могли бы вы дать мне ссылку? иконки социальных сетей для тестирования Edited February 15, 2019 by VladislavD Link to comment Share on other sites More sharing options...
newbie LAC Posted February 15, 2019 Author Share Posted February 15, 2019 This doesn't work in posts. Where (after name/after date) do you want to show icons in the post? Link to comment Share on other sites More sharing options...
VladislavD Posted February 15, 2019 Share Posted February 15, 2019 7 minutes ago, newbie LAC said: Where (after name/after date) do you want to show icons in the post? Link to comment Share on other sites More sharing options...
newbie LAC Posted February 15, 2019 Author Share Posted February 15, 2019 I'll add for next release VladislavD 1 Link to comment Share on other sites More sharing options...
Unlucky Posted March 1, 2019 Share Posted March 1, 2019 Hi, is this compatible with 4.4? Thanks Link to comment Share on other sites More sharing options...
newbie LAC Posted March 2, 2019 Author Share Posted March 2, 2019 Hello, 14 hours ago, Unlucky said: is this compatible with 4.4? Yes Link to comment Share on other sites More sharing options...
Ben Kingsley Posted April 18, 2019 Share Posted April 18, 2019 The problem I am having is when I edit the plugin and change a setting then hit save it reverts back to default do you know why this is happening? Link to comment Share on other sites More sharing options...
newbie LAC Posted April 19, 2019 Author Share Posted April 19, 2019 Hello, 8 hours ago, Ben Kingsley said: The problem I am having is when I edit the plugin and change a setting then hit save it reverts back to default do you know why this is happening? 1. 2. Run sql-query (ACP - Support - SQL Toolbox) and show me result SELECT * FROM core_sys_conf_settings WHERE conf_key='nb_sec_gr_icons_post_groups'; Link to comment Share on other sites More sharing options...
Motra Posted May 8, 2019 Share Posted May 8, 2019 It wont save what i change. Link to comment Share on other sites More sharing options...
newbie LAC Posted May 8, 2019 Author Share Posted May 8, 2019 Hello, 50 minutes ago, Motra said: It wont save what i change. What do you mean? Link to comment Share on other sites More sharing options...
Motra Posted May 8, 2019 Share Posted May 8, 2019 https://gyazo.com/c684dea49ccaa70ac436e12386413347 Link to comment Share on other sites More sharing options...
newbie LAC Posted May 8, 2019 Author Share Posted May 8, 2019 5 minutes ago, Motra said: https://gyazo.com/c684dea49ccaa70ac436e12386413347 I can't reproduce. If you give me acp access I'll look into that Link to comment Share on other sites More sharing options...
newbie LAC Posted May 8, 2019 Author Share Posted May 8, 2019 1 hour ago, Motra said: It wont save what i change. Not all settings were imported. I've reinstalled the plugin. Link to comment Share on other sites More sharing options...
Motra Posted May 8, 2019 Share Posted May 8, 2019 @newbie LAC Thank you very much! Link to comment Share on other sites More sharing options...
Paweł Mysłek Posted December 21, 2019 Share Posted December 21, 2019 (edited) @newbie LAC i don't work on version 4.4.9 in my: postContainer {expression="\IPS\Member\Group::load( $comment->author()->member_group_id )->formattedName" raw="true"} I have it like that: {expression="str_replace(array('lkgroup_'), array('lkgroup_block_'), \IPS\Member\Group::load( $comment->author()->member_group_id )->formattedName)" raw="true"} do you need to change something in the code or not? Because nothing is displayed. Edited December 21, 2019 by Paweł Mysłek Link to comment Share on other sites More sharing options...
newbie LAC Posted December 22, 2019 Author Share Posted December 22, 2019 Hello, 16 hours ago, Paweł Mysłek said: i don't work on version 4.4.9 Have you configure the settings on the 1st tab? Link to comment Share on other sites More sharing options...
Paweł Mysłek Posted December 22, 2019 Share Posted December 22, 2019 @newbie LAC But now I see that it adds as they are Group graphics. And my ranks are formatted Formatting prefix. Can it be done so that it takes the format prefix instead of the Graphics group? Link to comment Share on other sites More sharing options...
newbie LAC Posted December 22, 2019 Author Share Posted December 22, 2019 3 hours ago, Paweł Mysłek said: Can it be done so that it takes the format prefix instead of the Graphics group? Posts. Open the template core - global - plugins - nbSecGroupIconsPost Find and remove and $icon = $memberGroups[$grOther]->g_icon Find <img src='{file="$icon" extension="core_Theme"}' alt='{expression="$memberGroups[$grOther]->name"}' class='cAuthorGroupIcon'> change to {expression="$memberGroups[$grOther]->formattedName" raw="true"} Profiles. Open the template core - global - plugins - nbSecGroupIconsProfile Find and remove and $icon = $memberGroups[$grOther]->g_icon Find <img src='{file="$icon" extension="core_Theme"}' alt='{expression="$memberGroups[$grOther]->name"}'> change to {expression="$memberGroups[$grOther]->formattedName" raw="true"} Paweł Mysłek 1 Link to comment Share on other sites More sharing options...
Paweł Mysłek Posted December 22, 2019 Share Posted December 22, 2019 1 hour ago, newbie LAC said: Posts. Open the template core - global - plugins - nbSecGroupIconsPost Find and remove and $icon = $memberGroups[$grOther]->g_icon Find <img src='{file="$icon" extension="core_Theme"}' alt='{expression="$memberGroups[$grOther]->name"}' class='cAuthorGroupIcon'> change to {expression="$memberGroups[$grOther]->formattedName" raw="true"} Profiles. Open the template core - global - plugins - nbSecGroupIconsProfile Find and remove and $icon = $memberGroups[$grOther]->g_icon Find <img src='{file="$icon" extension="core_Theme"}' alt='{expression="$memberGroups[$grOther]->name"}'> change to {expression="$memberGroups[$grOther]->formattedName" raw="true"} I did so and nothing. Displays only the main range. Link to comment Share on other sites More sharing options...
newbie LAC Posted December 23, 2019 Author Share Posted December 23, 2019 16 hours ago, Paweł Mysłek said: I did so and nothing. Displays only the main range. Are icons/groups displayed on the default theme? Link to comment Share on other sites More sharing options...
Recommended Posts