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.
The forum of the forums
2 posters

    How can I add Admin/Mod color button on sceditor?

    Van-Helsing
    Van-Helsing
    Hyperactive


    Male Posts : 2431
    Reputation : 116
    Language : English, Greek

    Solved How can I add Admin/Mod color button on sceditor?

    Post by Van-Helsing November 2nd 2015, 10:40 pm

    Hello,
    How can I add Admin/Mod color button on sceditor?
    Ange Tuteur
    Ange Tuteur
    Forumaster


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

    Solved Re: How can I add Admin/Mod color button on sceditor?

    Post by Ange Tuteur November 3rd 2015, 12:27 am

    Hi @Black-Shadow,

    Go to Administration Panel > Modules > JavaScript codes management > New script

    Title : SCEditor Mod color
    Placement : In all the pages
    Code:
    $(function() {
      if (!$.sceditor || !_userdata.user_level) return;
     
      var mods = {
        'u1' : '#FF6600',
        'u2' : '#FF0000',
        'u3' : '#FFFF00',
        'u4' : '#00FF00'
      },
      c = '#000000', i, u = 'u' + _userdata.user_id;
     
      for (i in mods) {
        if (i == u) {
          c = mods[i];
          break;
        }
      }
     
      $.sceditor.command.set('modcolor', {
        exec : function() { this.insert('[color=' + c + '][b]','[/b][/color]') },
        txtExec : function() { this.insert('[color=' + c + '][b]','[/b][/color]') },
        tooltip : 'Insert mod color'
      });
     
      toolbar += '|modcolor';
    });

    At the top you'll see a "mods" object with id:color pairs. To the right of the colon is the ID of the member, and to the left is their color. Edit these so that they correspond to the user's ID and their color of choice. Wink

    As for the image of the button, add the following CSS to your stylesheet.
    Display > Colors > CSS
    Code:
    .sceditor-button-modcolor div {
      background-image:url(http://i56.servimg.com/u/f56/18/45/41/65/mcolo10.png) !important;
    }
    Van-Helsing
    Van-Helsing
    Hyperactive


    Male Posts : 2431
    Reputation : 116
    Language : English, Greek

    Solved Re: How can I add Admin/Mod color button on sceditor?

    Post by Van-Helsing November 3rd 2015, 1:06 am

    Thank you very much @Ange Tuteur it is working amazing.
    ~1~
    Its Solved.
    Ange Tuteur
    Ange Tuteur
    Forumaster


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

    Solved Re: How can I add Admin/Mod color button on sceditor?

    Post by Ange Tuteur November 3rd 2015, 1:06 am

    You're welcome ^^

    Topic archived

    Have a good day. Smile

      Current date/time is September 22nd 2024, 5:32 pm