BBcode Menù a tendina

Snippet & addons per il nostro phpbb 3
Rispondi
Avatar utente
diavoletta
Utente
Utente
Messaggi: 128
Iscritto il: 14/05/2012, 14:32
Link del Forum:
Contatta:

Custom bbcodes in a select box

Messaggio da diavoletta »

Titolo
Custom bbcodes in a select box
Autore
Simon
Descrizione
Permette di racchiudere tutti i bbcode che aggiungeremo da pca,in un comodissimo box a discesa
INIZIO GUIDA:
Open styles/{YOURTHEME}/template/posting_buttons.html
trova:

Codice: Seleziona tutto

<!-- BEGIN custom_tags -->
      <input type="button" class="button2" name="addbbcode{custom_tags.BBCODE_ID}" value="{custom_tags.BBCODE_TAG}" onclick="bbstyle({custom_tags.BBCODE_ID})" title="{custom_tags.BBCODE_HELPLINE}" />
   <!-- END custom_tags -->
sostituisci con

Codice: Seleziona tutto

<select name="addbbcode_custom" onchange="bbstyle(this.form.addbbcode_custom.options[this.form.addbbcode_custom.selectedIndex].value*1);this.form.addbbcode_custom.selectedIndex = 0;">
      <option value="#" selected="selected">Custom BBCodes</option>
      <!-- BEGIN custom_tags -->
      <option value="{custom_tags.BBCODE_ID}" title="{custom_tags.BBCODE_HELPLINE}">{custom_tags.BBCODE_TAG}</option>
      <!-- END custom_tags -->   
     </select>
Salvare,aggiornare il template da Pca
Esempio:
http://auroradiva.altervista.org/forum/ ... 8&p=18#p18

Spero che vi sia stata utile :ciao:
"Se Proprio Devo Andare all'Inferno, Tanto Vale Andarci in Gran Stile..."
Edward (Twilight)


Immagine
Avatar utente
boldherri
Utente
Utente
Messaggi: 164
Iscritto il: 14/05/2012, 16:32
Link del Forum: https://nightfury.altervista.org/forum/index.php
Contatta:

Re: Custom bbcodes in a select box

Messaggio da boldherri »

Ciao ragazzi,una domanda,mettendo questo bbcode poi i pulsanti che ho adesso che si trovano quando scrivo i messaggi che fa spariscono o rimangono tutti li?
SENZA DIO MAI UN MONDO MIGLIORE!!!
Avatar utente
Moloch
Utente
Utente
Messaggi: 1053
Iscritto il: 13/06/2012, 0:35
Link del Forum: http://twawi.altervista.org/forum/index.php

Re: Custom bbcodes in a select box

Messaggio da Moloch »

boldherri ha scritto:Ciao ragazzi,una domanda,mettendo questo bbcode poi i pulsanti che ho adesso che si trovano quando scrivo i messaggi che fa spariscono o rimangono tutti li?
I tuoi BBcode restano solo che sulla sinistra ti esce un box a discesa con gli altri che ai aggiunto tu invece di vederli gli scegli dal box
Avatar utente
boldherri
Utente
Utente
Messaggi: 164
Iscritto il: 14/05/2012, 16:32
Link del Forum: https://nightfury.altervista.org/forum/index.php
Contatta:

Re: Custom bbcodes in a select box

Messaggio da boldherri »

Ah ho capito,grazie moloch
SENZA DIO MAI UN MONDO MIGLIORE!!!
Rispondi