Désactiver/masquer tous les emojis sauf les personnalisés

Is there a way to disable or hide all emoji sets except for custom emojis?

You can do this by adding the following CSS to your main theme under the Common tab. The following code will only show the custom emoji:

.emoji-picker {
    .categories-column,
    .footer,
    .filter,
    [data-section="people"],
    [data-section="nature"],
    [data-section="food"],
    [data-section="celebration"],
    [data-section="activity"],
    [data-section="travel"],
    [data-section="objects"],
    [data-section="ungrouped"] .section-header {
        display: none;
    }
}

Since there is only one, custom set, I also set it up to hide the filter, the emoji category column, the skin tone selector, and the title text “Custom Emoji.”

Hope that helps :slight_smile:

You are amazing , appreciate the help much @tshenry