more fonts in the editor? Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
2 posters

    more fonts in the editor?

    QeemBA
    QeemBA
    Forumember


    Posts : 38
    Reputation : 1
    Language : English

    Solved more fonts in the editor?

    Post by QeemBA July 9th 2014, 6:10 am

    Hi everyone

    Is it possible to have more fonts inside the editor??
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: more fonts in the editor?

    Post by Ange Tuteur July 9th 2014, 8:59 am

    Hello Qeemba,

    I wrote up a quick draft for you to test. This will allow you to add new fonts to the list of fonts :
    Administration panel > Modules > Javascript codes management > create a new script

    Title : Your choice
    Placement : In all the pages
    Paste the code below :
    Code:
    $(function(){$(function() {
      $('.sceditor-button-font').click(function() {
        addFont('Calibri');
        addFont('Papyrus');
        addFont('Copperplate');
        addFont('Avantgarde');
       
        $('.sceditor-font-option.new-font').click(function(e){$('#text_editor_textarea').sceditor('instance').insertText('[font='+$(this).attr('data-font')+']','[/font]');$('.sceditor-font-picker').remove();e.preventDefault()})
      });
      function addFont(font){$('.sceditor-font-picker div').append('<a unselectable="on" class="sceditor-font-option new-font" href="#" data-font="'+font+'"><font unselectable="on" face="'+font+'">'+font+'</font></a>')}
    })});

    To add new fonts to the list simply write addFont(); between the parenthesis you'll write the font you want in quotes. For example :
    Code:
    addFont('Baskerville');
    QeemBA
    QeemBA
    Forumember


    Posts : 38
    Reputation : 1
    Language : English

    Solved Re: more fonts in the editor?

    Post by QeemBA July 9th 2014, 9:34 am

    Hi Ange

    Yes it did works! Big Thanks Smile
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: more fonts in the editor?

    Post by Ange Tuteur July 9th 2014, 10:56 am

    You're welcome

    Topic archived

    Have a good day. Smile