• Resolved David LeBlanc

    (@davidtleblanc)


    How can I get a smiley to show using Black Studio Tinymce? I am using Page Builder and this editor to arrange content.

    I can get a smiley with the standard WP Tinymce editor in standard visual mode, but it doesn’t work through the Black Studio Tinymce.

    If I enter the punctuation without the questions marks of course “;-)” it comes out ;-). All is properly spaced and the check box in Settings => Writing is checked correctly.

    Thanks for any help.

    https://www.ads-software.com/plugins/black-studio-tinymce-widget/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Marco Chiesi

    (@marcochiesi)

    The current version of the plugin does not yet support the smilies conversion feature. We will add it in the next release.
    In the meantime you may use the following code to enable it for widgets (insert this code in your theme’s functions.php or in a custom plugin):

    function apply_smilies_to_widget_text( $text ) {
     return convert_smilies( $text );
    }
    add_filter( 'widget_text', 'apply_smilies_to_widget_text' );
    Thread Starter David LeBlanc

    (@davidtleblanc)

    Marco. Thanks for the reply and the solutions.

    Plugin Author Marco Chiesi

    (@marcochiesi)

    Please check the new version 1.3.0 just released, which has native support support for smilies.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Smileys’ is closed to new replies.