🌍
Français
A propos, dans la prochaine version, est- ce que les skins permettront de placer ces infos ou on veut dans le template ?
oui, c'est tout l'intérêt
Merci Zorg
A propos, dans la prochaine version, est- ce que les skins permettront de placer ces infos ou on veut dans le template ?
Existe til un moyen de faire disparaitre les infos sous l'image (infos techniques, titre auteur date) pour ne garder que les commentaires ?
oui, sans pb , dans photo.php (version 1.2) ligne 373, supprimes :
echo" <table style="width:100%;"> <tr> <td align="center"> <table style="margin:auto;margin-top:5px;margin-bottom:5px;">"; if ( $page['author'] != "" ) { echo" <tr> <td class="menu" style="font-weight:bold;">".$lang['author']." : </td> <td style="text-align:right;">".$page['author']."</td> </tr>"; } if ( $page['date_creation'] != "" ) { $tab_date = explode( "-", $page['date_creation'] ); echo" <tr> <td class="menu" style="font-weight:bold;">".$lang['creation_date']." : </td> <td class="menu" style="text-align:right;">".$tab_date[2]."/".$tab_date[1]."/".$tab_date[0]."</td> </tr>"; } $tab_date = explode( "-", $page['date_available'] ); echo" <tr> <td class="menu" style="font-weight:bold;">".$lang['registration_date']." : </td> <td class="menu" style="text-align:right;">".$tab_date[2]."/".$tab_date[1]."/".$tab_date[0]."</td> </tr>"; echo" <tr> <td class="menu" style="font-weight:bold;">".$lang['size']." : </td> <td class="menu" style="text-align:right;">"; if ( $original_width != $final_width || $original_height != $final_height ) { echo"[ <a href="$lien_image" title="".$lang['true_size']."">$original_width*$original_height</a> ]"; } else { echo $original_width."*".$original_height; } echo"</td> </tr>"; echo" <tr> <td class="menu" style="font-weight:bold;">".$lang['file']." : </td> <td class="menu" style="text-align:right;">"; if ( $page['cat'] == 'search' ) { echo replace_search( $page['file'], $HTTP_GET_VARS['search'] ); } else { echo $page['file']; } echo "</td> </tr>"; if ( $page['filesize'] == "" ) { $poids = floor ( filesize( $lien_image ) / 1024 ); } else { $poids = $page['filesize']; } echo" <tr> <td class="menu" style="font-weight:bold;">".$lang['filesize']." : </td> <td class="menu" style="text-align:right;">$poids KB</td> </tr> </table> </td> </tr> </table>";
Existe til un moyen de faire disparaitre les infos sous l'image (infos techniques, titre auteur date) pour ne garder que les commentaires ?