- Desde
- 12 Mar 2005
- Mensajes
- 136
Hola, cada vez os visito mas , mi nuevo problema es el siguiente, en este hilo : Latest X Attachments on FORUMHOME and FORUMDISPLAY - Page 4 - vBulletin.org Forum hay un mod de vbulletin para poder ver los últimos Attachments del foro, pues vereis que en la página 4, que es la pongo el link, hay una modificación del codigo para el propio mod, de forma que se pueda escoger de que foro se extraen los ultimos Attachments, pego aquí el código:
Un saludo y grácias.
Pues bién he probado a incluir estos codigos por separado en mi plantilla latest_x_attachments y no hay forma de que me funcione ninguno de ellos, alguien sabe que hago mal?This conditional allows you to display information on a per forum basis. This can be helpful if you wish to display different advertisements depending on what forum that the user is in. You would simply replace X with the forum id that you wish the information to appear in.
HTML Code:
<if condition="$forum[forumid] == X"></if>
and on the other hand you can use the ! to do the opposite and display the information in every forum but the id you list
HTML Code:
<if condition="$forum[forumid] != X"></if>
or if you have multiple forums you wish to include something with you can use an array such as this
HTML Code:
<if condition="in_array($forum['forumid'], array(1,2,3,6))"></if>
Un saludo y grácias.