Anyone has figured this out? I am having a same issue, the ad disappears after 3-4 posts
jdk1811
Posts
-
I have problem with adsense -
Modifying emoji-extended help!@frissdiegurke Thanks again! everything went well
Can I ask one more thing though,? Is it possible to delete alt on emoticons? I thought it was on parse.js, so I deleted
alt:function(match){return match},
this line, but it just broke the whole plugin
-
[nodebb-plugin-ns-spoiler] NS SpoilerI am actually having a similar issue. I am guessing it's messing up with youtube plugin.
:::
--some tex1t--
youtube link
--some text2--
:::If I do this, spoiler button and some text1 disappears,
and youtube, some_text2 does not get into the spoiler and shows up
-
Modifying emoji-extended help!@frissdiegurke Thank you so much! i'll play around with it
-
Modifying emoji-extended help!@frissdiegurke said:
But the 3rd point could also be achieved by a separate plugin so you don't have to fork/modify the emoji-extended anymore (which would cause trouble while updating).
I am actually trying to make it popup with different image instead of changing the image directly,
Is it still possible with serparate plugin? If so, could you give me which plugins can to do this?I tried modifying the emoji-extended to do this, but really lost where to start haha..
-
Modifying emoji-extended help!@frissdiegurke Thank you for a quick reply! Absolutely love your work, and really glad you replied here!
Will the rework include 3rd part? I am assuming it wont, but I can't wait!
I'll probably working on this today, the 3rd part seems a bit challenge for me but hopefully I'll figure it out, it's a good learning experience. -
Modifying emoji-extended help!Hi, I am new to nodebb and been trying to modify emoji-extended plugin, but I am kinda stuck.
I am trying to:
- Make bunch of new icons (successful)
- Show icons with it's original width / height (Help! If this is not possible, could anyone help me how to change the size of icon?)
- When I hover over to icon, it currently shows a zoomed size of the icon, but is it possible to show a different icon(or image)?
- When I type : and try to find icons, it automatically shows the available icon to write, is it possible to restrict some icons to not show up in the list?
For 2nd part, I tried modifying emoji-textcomplete.coffee, changing the value of emojSize, changing width and height, but failed.
emojiSize = 20 style = """ <style type="text/css"> .emoji { width: 20px; height: 20px; transition: z-index,margin,margin-right,width,height; transition-timing-function: ease-in-out; transition-duration: 0.2s; transition-delay: 0.2s; z-index: 0; } """
For 3rd part, I am assuming I have to change emoji-textcomplete.coffe file again:
.emoji:hover { width: #{zoom}px; height: #{zoom}px; margin: #{-(zoom-emojiSize)/2}px; z-index: #{zoom}; }
But not sure how to do so..
Any tips or advice are welcomed! Thanks in advance..