Ho creato alcuni widget con tipologia "HTML statico", esiste un modo per visualizzare questi widget solo in alcune pagine?
Magari aggiungendo codice all'interno del widget. :)
Visualizzazione Stampabile
Ho creato alcuni widget con tipologia "HTML statico", esiste un modo per visualizzare questi widget solo in alcune pagine?
Magari aggiungendo codice all'interno del widget. :)
Allora devi creare un widget PHP e fare una cosa del genere:
Questo codice ad esempio mostra il numero di utenti (qui chiamati giocatori) connessi all'interno del widget:Codice PHP:
$SQL = "SELECT COUNT(DISTINCT userid) AS cnt
FROM " . TABLE_PREFIX . "session
WHERE userid>0";
$rs = vB::$db->query_first($SQL);
$output = sprintf('<div align="center"><span style="font-size: large; font-weight: bold;">%d</span></div>', $rs['cnt']);
Allegato 1273
ah beh... pensavo fosse difficile ed invece è impossibile! :D
vediamo se riesci ad aiutarmi, te ne sarei mooooooolto grato, in homepage ho questo widget in html statico:
Allegato 1274
il codice è il seguente:
Se volessi ricrearlo utilizzando "Esecuzione diretta php" facendo si che tale "menù" fosse visualizzato solo in homepage, cosa dovrei mettere all'interno del widget? ;)Codice HTML:<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
</head>
<body>
<table
style="text-align: left; width: 100%; height: 100%; font-weight: bold;"
border="0" cellpadding="2" cellspacing="2">
<tbody>
<tr>
<td><small><span style="color: rgb(255, 102, 0);">>
</span></small><span
style="text-decoration: underline;"></span><a
href="http://localhost:8888/list.php?category/89-Abruzzo">Abruzzo</a></td>
<td><small><span style="color: rgb(255, 102, 0);">>
</span></small><a
href="http://localhost:8888/list.php?category/90-Basilicata"><small><span
style="color: rgb(255, 102, 0);"></span></small></a><a
href="http://localhost:8888/list.php?category/90-Basilicata">Basilicata</a></td>
<td><small><span style="color: rgb(255, 102, 0);">>
</span></small><a
href="http://localhost:8888/list.php?category/91-Calabria">Calabria</a></td>
<td><small><span style="color: rgb(255, 102, 0);">>
</span></small><a
href="http://localhost:8888/list.php?category/92-Campania">Campania</a></td>
<td><small><span style="color: rgb(255, 102, 0);">>
</span></small><a
href="http://localhost:8888/list.php?category/93-Emilia-Romagna">Emilia
Romagna</a></td>
</tr>
<tr>
<td><small><span style="color: rgb(255, 102, 0);">>
</span></small><a
href="http://localhost:8888/list.php?category/94-Friuli-Venezia-Giulia">Friuli
Venezia Giulia</a></td>
<td><small><span style="color: rgb(255, 102, 0);">>
</span></small><a
href="http://localhost:8888/list.php?category/95-Lazio">Lazio</a></td>
<td><small><span style="color: rgb(255, 102, 0);">>
</span></small><a
href="http://localhost:8888/list.php?category/96-Liguria">Liguria</a></td>
<td><small><span style="color: rgb(255, 102, 0);">>
</span></small><a
href="http://localhost:8888/list.php?category/97-Lombardia">Lombardia</a></td>
<td><small><span style="color: rgb(255, 102, 0);">>
</span></small><a
href="http://localhost:8888/list.php?category/98-Marche">Marche</a></td>
</tr>
<tr>
<td><small><span style="color: rgb(255, 102, 0);">>
</span></small><a
href="http://localhost:8888/list.php?category/99-Molise">Molise</a></td>
<td><small><span style="color: rgb(255, 102, 0);">>
</span></small><a
href="http://localhost:8888/list.php?category/100-Piemonte">Piemonte</a></td>
<td><small><span style="color: rgb(255, 102, 0);">>
</span></small><a
href="http://localhost:8888/list.php?category/101-Puglia">Puglia</a></td>
<td><small><span style="color: rgb(255, 102, 0);">>
</span></small><a
href="http://localhost:8888/list.php?category/102-Sardegna">Sardegna</a></td>
<td><small><span style="color: rgb(255, 102, 0);">>
</span></small><a
href="http://localhost:8888/list.php?category/103-Sicilia">Sicilia</a></td>
</tr>
<tr>
<td><small><span style="color: rgb(255, 102, 0);">>
</span></small><a
href="http://localhost:8888/list.php?category/104-Toscana">Toscana</a></td>
<td><small><span style="color: rgb(255, 102, 0);">>
</span></small><a
href="http://localhost:8888/list.php?category/105-Trentino-Alto-Adige">Trentino
Alto Adige</a></td>
<td><small><span style="color: rgb(255, 102, 0);">>
</span></small><a
href="http://localhost:8888/list.php?category/106-Umbria">Umbria</a></td>
<td><small><span style="color: rgb(255, 102, 0);">>
</span></small><a
href="http://localhost:8888/list.php?category/107-Valle-d-Aosta">Valle
d'Aosta</a></td>
<td><small><span style="color: rgb(255, 102, 0);">>
</span></small><a
href="http://localhost:8888/list.php?category/108-Veneto">Veneto</a></td>
</tr>
<tr>
<td><small><span style="color: rgb(255, 102, 0);">>
</span></small><a
href="http://localhost:8888/list.php?category/108-Veneto">Attività Online
& Shopping Club</a></td>
</tr>
</tbody>
</table>
<br style="font-weight: bold;">
</body>
</html>
Grazie mille
No aspetta. Tu dici che vuoi questo widget solo nella CMS Home?
Allora devi creare un layout che lo contiene e utilizzare un altro layout che non lo contiene per le sezioni che non hanno questo widget.
Poi assegni in modifica sezione (dal CMS) lo stile rispettivo per queste sezioni del CMS.