• User

    BBcode

    Ciao a tutti,
    ho il seguente problema: vorrei mettee un'immagine al posto del tasto per i bbcode personalizzati (ad esempio su questo forum vedi quello di youtube col logo del sito).
    Ho trovato una guida in merito: http://startrekguide.com/community/viewtopic.php?f=50&t=3232
    La prima parte spiega come sostituire i pulsanti dei bbcode già inseriti da phpbb3.
    La seconda parte invece tratta i custom bbcode (quello che mi interessa).
    Il fatto è che non capisco cosa devo fare..
    Riporto la parte che non capisco...

    The custom bbcodes are in an array, where the resulting code looks something like this:

       <input type="button" class="button2" accesskey="" name="addbbcode52" value=" imgwrap " onclick="bbstyle(52)" title="Wrap text around an image" />
    ```The above code will not be shown in the posting_buttons.html file, instead you will see:
    

    <!-- 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 -->

    <!-- 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 -->

    <input class="buttonz" name="addbbcode44" value="" onclick="bbstyle(44)" title="Superscript: [sup]...[/sup]" type="button" style="background: url('images/bbcode_superscript.png');" />

    
    The number that is in the name and onclick can be found by looking at the source code of your posting area before you comment out the custom bbcode buttons. Also, if you add/remove any new bbcodes some of your buttons' numbers might get shifted by 2 digits, so be sure to do this after completion of your additonal custom bbcodes.Vi ringrazio!