• Resolved N3k0

    (@n3k0)


    Hi team, this is a asom community forum plugin, and I have 2 suggestions:

    1) Its is posible to add a native emoji buttom, so desktop users can see and add their emoji in the message?

    2) This forum need a CSS editor in the option menu, then will can change the look of the forum whateever we want, or give a CSS guide to add or custom colors and styles.

    Sorry for my english. keep the great work ??

    https://www.ads-software.com/plugins/asgaros-forum/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Asgaros

    (@asgaros)

    1) Its is posible to add a native emoji buttom, so desktop users can see and add their emoji in the message?

    You can already do this if you install an Emoji PlugIn for WordPress, for example:
    https://www.ads-software.com/plugins/wp-emoji-one/

    After you have installed it, add this code to your themes functions.php:

    function change_editor_settings($settings) {
    	$settings['teeny'] = false;
    	return $settings;
    }
    
    add_filter('asgarosforum_filter_editor_settings', 'change_editor_settings');

    2) This forum need a CSS editor in the option menu, then will can change the look of the forum whateever we want, or give a CSS guide to add or custom colors and styles.

    You can override any of the CSS in your themes style.css file. WordPress has already an editor for this in core (Appearance -> Editor/Plugins -> Editor), so I will not add another one.

    Thread Starter N3k0

    (@n3k0)

    1) Cool… i didnt know i can do that ??

    2) Nice… but a guide? or just copy/paste the css from you plugin style?

    Cheers!

    Plugin Author Asgaros

    (@asgaros)

    Yes, you can copy/paste the parts you want to change and adjust the values.

    I inserted your code as you posted in my themes functions.php:

    function change_editor_settings($settings) {
    $settings[‘teeny’] = false;
    return $settings;
    }
    add_filter(‘asgarosforum_filter_editor_settings’, ‘change_editor_settings’);

    –> It worked perfectly for my admin / editor users, they now see the wp emojj one button in the asgaros forum on can use it.

    But all othe users, that have just a login to use the forum but no further rights, they cannot use the emoticons, they don’t see the button there. How do i have to handle that?

    Thanks a lot
    Olivier

    Plugin Author Asgaros

    (@asgaros)

    Hello!

    This seems to be a problem with the WP Emoji One plugin. You should contact the plugin-author here:
    https://www.ads-software.com/support/plugin/wp-emoji-one

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘WYSIWYG Emoji Button / CSS Guide or editor’ is closed to new replies.