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

    Help with Prefix Script Tune up

    FiskBlack
    FiskBlack
    Forumember


    Posts : 50
    Reputation : 3
    Language : English

    Help with Prefix Script Tune up Empty Help with Prefix Script Tune up

    Post by FiskBlack Mon 8 Aug - 22:06

    Hey there,

    i'd like some help with a code for a Prefix/Tag system, it already works the way I want, but I'd like to add two more parts to it:

    - Colorize the prefixes;
    - Permission level, must be a moderator or an admin to use some of the prefixes.


    Here is the code:
    Code:

    var PREFIJOS_TEMAS = [];

    //########## ZONA EDITABLE #####################################
      PREFIJOS_TEMAS.push("[Music]");
      PREFIJOS_TEMAS.push("[Question]");
      PREFIJOS_TEMAS.push("[Solved]");
      PREFIJOS_TEMAS.push("[Event]");
      PREFIJOS_TEMAS.push("[Movie]");
      PREFIJOS_TEMAS.push("[Game]");
      PREFIJOS_TEMAS.push("[Tutorial]");
      //Añade más prefijos si quieres, simplemente añadiendo una línea igual:
      http://PREFIJOS_TEMAS.push("[Nuevo Prefijo]");
    //########## FIN ZONA EDITABLE #####################################

    $(function () {
      if(/^\/post\?f=\d+&mode=newtopic/.test($(location).attr('pathname') + $(location).attr('search'))){   
          var html_options_prefijo = "<select name='prefijos'><option value=''>--Seleccionar--</option>";
          for(var prefijo in PREFIJOS_TEMAS){
            html_options_prefijo += "<option value='" + PREFIJOS_TEMAS[prefijo] + "'>" + PREFIJOS_TEMAS[prefijo] + "</option>";
          }
          html_options_prefijo += "</select>";     
          $('input[name="subject"]').before(html_options_prefijo);       
          $("form[method='post']").submit(function() {
            $('input[name="subject"]').val(($('select[name="prefijos"]').val() ? $('select[name="prefijos"]').val() + " " : "") + $('input[name="subject"]').val());
          });
      }
    });

    And this is the topic of the creator: http://asistencia.foroactivo.com/t110856-sistema-de-prefijos-en-el-asunto-de-los-posts


    Thank you for your help.
    FiskBlack

      Current date/time is Wed 13 Nov - 19:41