Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
Posted May 8, 20187 yr In invisionpower forum, the "Emoticons" category it is in first position but in my forum (IPS 4.3.1) is in last position (after "Flags"). How to move this category to the first position? Thanks.
May 26, 20186 yr try to add this into includeJS template <script type="text/javascript"> ;( function($, _, undefined){ "use strict"; ips.controller.mixin('custom', 'core.global.editor.emoticons', true, function () { this.around('_buildEmoji',function (fn, emoji, tone, search) { var reOrderEmoji = {}; _.each(Object.keys(emoji).sort(function(a) { if(emoji[a].length && emoji[a][0]['code'].startsWith('custom-') ){ return 0; } return 1; }),function(k) { reOrderEmoji[k] = emoji[k]; }); return fn(reOrderEmoji,tone,search); }); }); }(jQuery, _)); </script> Tested but if anyone have issue inform us
May 29, 20186 yr Author Sorry, but doesn’t work. On 5/26/2018 at 7:56 PM, BomAle said: try to add this into includeJS template <script type="text/javascript"> ;( function($, _, undefined){ "use strict"; ips.controller.mixin('custom', 'core.global.editor.emoticons', true, function () { this.around('_buildEmoji',function (fn, emoji, tone, search) { var reOrderEmoji = {}; _.each(Object.keys(emoji).sort(function(a) { if(emoji[a].length && emoji[a][0]['code'].startsWith('custom-') ){ return 0; } return 1; }),function(k) { reOrderEmoji[k] = emoji[k]; }); return fn(reOrderEmoji,tone,search); }); }); }(jQuery, _)); </script> Tested but if anyone have issue inform us
June 4, 20186 yr I see a strange behaviour... when code try to read "emoji" object it will reorder badly the keys... I think this is a bug but before annouce it mention staff @Daniel F @bfarber @Rikki
June 4, 20186 yr Does anyone find that the custom emoticons that appear at the top of the selector list seem to be randomly set or change after you create a new group or reorder your custom emoticons? I created a new category called Creatures and it appears at the top of the selector box, even though in AdminCP its halfway down the page of categories. Is this what you are referring to?
June 4, 20186 yr On 5/29/2018 at 6:39 PM, pequeno said: Desculpe, mas não funciona. It worked perfectly here ....
August 26, 20186 yr On 6/4/2018 at 2:38 PM, The Old Man said: Does anyone find that the custom emoticons that appear at the top of the selector list seem to be randomly set or change after you create a new group or reorder your custom emoticons? I created a new category called Creatures and it appears at the top of the selector box, even though in AdminCP its halfway down the page of categories. I have exactly the same problem! I don't use emojis (my database is not yet converted to utf8mb4), I only have various categories of custom emojis. I checked the emo_set_position column in core_emoticons table of my database, and the values are totally in line with the category order as displayed in the ACP. However on the site (when loading emoticons from the selector list in editor), it is all randomly messed up. I'll let you know if I find a workaround.
Archived
This topic is now archived and is closed to further replies.