I’m hooking up on this question! ??
With great experience I use the plugin WP Grins. But now I have to many emoticons (I will take some away – don’t worry ;)) and I want to show them with an show/hide option -OR AS THE ABOVE QUESTION IN A SCROLBOX-. On my old website (Example: https://www.elkana.nl/weblog/index.php?itemid=779#nucleus_cf) you can see what I mean. Under the comment form there are som links. If you click them, the smilies show up. Now I want to make it like that on my new site on https://www.elkana.nl/wp
I’m using the following code:
<script language=”JavaScript”>
<!–
function showLevel( _levelId ) {
var thisLevel = document.getElementById( _levelId );
if ( thisLevel.style.display == “none”) {
thisLevel.style.display = “block”;
}
else {
hideLevel( _levelId);
}
}
function hideLevel( _levelId) {
var thisLevel = document.getElementById( _levelId );
thisLevel.style.display = “none”;
}
// –>
</script>
All the smilies at once
-smilies-
</div>
But I don’t know how to implement this -OR THE SCROLBOX- in this plugin to show it in my comments-area. Can somebody help me/us with that?