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.

Help with Prefix Script Tune up

Go down

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

Post by FiskBlack August 8th 2016, 10:06 pm

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
FiskBlack
FiskBlack
Forumember

Posts : 50
Reputation : 3
Language : English

http://otakunoheya.forumotion.com/

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum