谢谢,@cpradio。
我查过了,但没有找到与“retort”相关的内容:
我所在的 Communiteq(前身为 DiscourseHosting)可能没有安装该插件。是这样吗,@michaeld?
嗯,从这段代码来看,似乎你可以单独列出允许用于“retort”的表情符号,而不会影响成员在其他地方使用的表情。
谢谢,@cpradio。
我查过了,但没有找到与“retort”相关的内容:
嗯,从这段代码来看,似乎你可以单独列出允许用于“retort”的表情符号,而不会影响成员在其他地方使用的表情。
Correct.
Click on Plugins, you should be able to see if it is installed.
是的,我查看过,它并未列在插件中,但我已提交请求,希望将其添加到 Communiteq(原 DiscourseHosting)。
I have the same problem as you did months ago. I just added emojis, today, March 13, 2018. Did you ever figure out a fix for this in your troubleshooting?

If I turn the retort limited emoji set off I get this cut off window which you cannot scroll down:

If I can just get my tailored list of emojis to work, I’m happy. Looks like it should work fine if go by this rule (Thanks, @gdpelican.):
Except I have 25 emojis but they aren’t forming 5X5 rows. Any ideas as to why this might be?
I can get 20 icons to work though, but then, the last emoji doesn’t appear and only a clip is displayed instead of an image If I do 20 emojis:
Should I be using this forked version, @schungx if I want to have neat rows, not be limited to a particular number of emojis, and fix the defect in the last (bottom-right) emoji that is invisible?
有人试过 Stephen 热心制作的这个插件分支版本吗?
我遇到了和 Stephen 完全相同的问题,正考虑联系 Communiteq(原 DiscourseHosting),看他们是否愿意安装这个版本而不是原版。我也给 Stephen 发了消息。我主要想知道的是,这个版本是否运行顺畅。
Thanks, @lll (Joe) for helping me figure this out. I am posting here in case anyone else has problems.
Here is the code:
Here is my beautiful chart of emojis:

Thank you, @schungx for helping me eliminate other possible explanations.
5 posts were merged into an existing topic: Add new coffee icon (same role as the love icon)
不确定你是否已经自己找到了复现步骤,但我注意到了这个 bug,经过一些测试,这似乎是 100% 复现此问题的方法:
当你的当前页面被翻译成其他语言(例如使用 Google Chrome > 右键点击 > 翻译页面)时,为主题或帖子添加表情符号反应会添加一个“出错”的表情符号(:translated_emoji_name:),而不是实际的表情符号图标。
复现步骤:
:emoji_names: 会被翻译,添加它们时会将翻译后的文本作为表情符号反应发布。并非所有表情符号都会出现此问题,因为并非所有名称都会被翻译。
希望这能有所帮助。如果这个问题已经被回答或发现,那么很抱歉我没能在这个主题中找到它。
Latest update introduced some problems, a float: left; which broke hover pop ups and something is wrong with the placement.
.post-retort {
background: #dfdfff;
float: left; <<< THIS FLOAT LEFT BREAKS THE HOVER POP UP
padding: 2px;
margin: 2px;
margin-top: 2px;
border-radius: 5px;
border: 1px solid #ccf;
position: relative;
outline: 0;
}
I fixed both problems with:
.post-retort {
margin-top: 33px !important;
float: none;
}
Thanks for the report; this should be fixed in the latest master.
The positon: relative on .post-retort is breaking the layout for Android users on chrome, one of my members reported a margin on the right on Samsung Galaxy S3 and removing position: relative using the developers tools in Firefox fixed it
Edit: I changed it to postion: static !important
But breaks the hover…
I’ve narrowed it down to this…
post-retort__tooltip
The width on the last one in the row is creating the margin on the right even though it’s not visible until you hover…
Final Solution:
.post-retort__tooltip {
visibility: hidden;
display: none;
}
.post-retort:hover .post-retort__tooltip {
visibility: visible;
display: inline;
}
Thanks for the detective work, I’ll have a play with your css and hopefully merge it into master in the next day or two.
Amazing feature! Just one big request: The borders around the emoji are very obtrusive, especially in the dark theme. Thank you!
I’d suggest applying some custom css styles to your instance to taste. For example, to remove the border entirely you could do
.post-retort { border: 0; }
Thanks, do you know how/where I can add that line of code?
You should be able to do so by visiting <yoursite>/admin/customize/themes, then creating a new theme and entering that into the ‘Edit CSS/HTML’ field under ‘CSS’
Someone Should™ write a howto for this, although maybe I’m missing where that resource is ![]()
I followed that exactly and it still has a light blue highlight border as usual 
It seems this was not answered? I’m pretty sure it’s not possible in the current plugin state, but it would be pretty amazing addition to the plugin.
Loving this plugin. Question, does it have to open in a lightbox? Any chance you’d be willing to throw in a feature to make it behave a bit more like Facebook? A couple examples…
Gracias ![]()