Ne pas afficher stats contenu d'un album Ne pas afficher stats contenu d'un album
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

Ne pas afficher stats contenu d'un album

Started by helios79, February 06, 2009, 06:09:21 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

helios79

Bonsoir,

Comment faire pour que ne figure pas les quelques stats (cf ma capture d'écran jointe) à coté de la miniature d'un album donné ?
En effet je ne voudrais que soit affiché seulement les miniatures et le titre des album.

D'avance merci.



François Keller

il faut modifier la fonction d'affichage dans le fichier theme.php de votre theme. Si la fonctio n'y est pas, cherchez la dans le fichier theme.php du theme sample et copiez/collez là dans votre fichier theme.php avant de la modifier
Avez vous lu la DOC ? la FAQ ? et cherché sur le forum avant de poster ?
Did you read the DOC ? the FAQ ? and search the board before posting ?
Mon Blog

helios79

Merci de votre réponse  :)

Par contre j'ai ouvert mon theme.php dans Notepad++ mais je ne sais où intervenir exactement, je suis pas expert dans ce genre de modification...

Pour information j'utilise le theme "Eyeball".

Si quelqu'un pouvait me guider plus précisément ce serait génial.

Merci d'avance.

François Keller

Avez vous lu la DOC ? la FAQ ? et cherché sur le forum avant de poster ?
Did you read the DOC ? the FAQ ? and search the board before posting ?
Mon Blog

helios79


François Keller

dans le fichier theme.php du theme eyeball, il faut ajouter la fonction ci dessous prise dans le fichier theme.php du theme sample
// HTML template for the album list
$template_album_list = <<<EOT

<!-- BEGIN stat_row -->
        <tr>
                <td colspan="{COLUMNS}" class="tableh1" align="center"><span class="statlink">{STATISTICS}</span></td>
        </tr>
<!-- END stat_row -->
<!-- BEGIN header -->
        <tr class="tableb_compact">
<!-- END header -->
<!-- BEGIN album_cell -->
        <td width="{COL_WIDTH}%" valign="top">
        <table width="100%" cellspacing="0" cellpadding="0">
        <tr>
                <td colspan="3" height="1" align="left" valign="top" class="tableh2">
                        <span class="alblink"><a href="{ALB_LINK_TGT}"><b>{ALBUM_TITLE}</b></a></span>
                </td>
        </tr>
        <tr>
                <td colspan="3">
                        <img src="images/spacer.gif" width="1" height="1" border="0" alt="" /><br />
                </td>
        </tr>
        <tr>
                <td align="center" valign="middle" class="thumbnails">
                        <img src="images/spacer.gif" width="{THUMB_CELL_WIDTH}" height="1" class="image" style="margin-top: 0px; margin-bottom: 0px; border: none;" alt="" /><br />
                        <a href="{ALB_LINK_TGT}" class="albums">{ALB_LINK_PIC}<br /></a>
                </td>
                <td>
                        <img src="images/spacer.gif" width="1" height="1" border="0" alt="" />
                </td>
                <td width="100%" valign="top" align="left" class="tableb_compact">
                        {ADMIN_MENU}
                        <p>{ALB_DESC}</p>
                        <!-- <p class="album_stat">{ALB_INFOS}</p> -->
                </td>
        </tr>
        </table>
        </td>
<!-- END album_cell -->
<!-- BEGIN empty_cell -->
        <td width="{COL_WIDTH}%" valign="top">
        <table width="100%" cellspacing="0" cellpadding="0">
        <tr>
                <td height="1" valign="top" class="tableh2">
                        <b>&nbsp;</b>
                </td>
        </tr>
        <tr>
                <td>
                        <img src="images/spacer.gif" width="1" height="1" border="0" alt="" /><br />
                </td>
        </tr>
        <tr>
                <td width="100%" valign="top" class="tableb_compact">
                    <div class="thumbnails" style="background-color:transparent"><img src="images/spacer.gif" width="1" height="1" border="0" class="image" style="border:0;margin-top:1px;margin-bottom:0" alt="" /></div>
                </td>
        </tr>
        </table>
        </td>
<!-- END empty_cell -->
<!-- BEGIN row_separator -->
        </tr>
        <tr class="tableb_compact">
<!-- END row_separator -->
<!-- BEGIN footer -->
        </tr>
<!-- END footer -->
<!-- BEGIN tabs -->
        <tr>
                <td colspan="{COLUMNS}" style="padding: 0px;">
                        <table width="100%" cellspacing="0" cellpadding="0">
                                <tr>
                                       {TABS}
                                </tr>
                        </table>
                </td>
        </tr>
<!-- END tabs -->
<!-- BEGIN spacer -->
        <img src="images/spacer.gif" width="1" height="7" border="" alt="" /><br />
<!-- END spacer -->

EOT;

j'ai simplement commenté la ligne qui affiche les statistiques des albums (pour info c'est celle qui est ci dessous)
<!-- <p class="album_stat">{ALB_INFOS}</p> -->
Avez vous lu la DOC ? la FAQ ? et cherché sur le forum avant de poster ?
Did you read the DOC ? the FAQ ? and search the board before posting ?
Mon Blog

helios79

Désolé pour cette réponse tardive, je n'ai pas eu de temps pour me pencher sur mon soucis avant ce soir.

Merci donc de ta réponse.

J'ai tenté d'ajouter cette partie de code, en commentant la ligne citée, mais malheureusement cela n'a pas fonctionné...

François Keller

pourtant chez moi ça marche ( le code donné plus bas commente déjà la ligne qui affiche les stats)
Avez vous lu la DOC ? la FAQ ? et cherché sur le forum avant de poster ?
Did you read the DOC ? the FAQ ? and search the board before posting ?
Mon Blog

helios79

ah ? Je n'ai peut-être pas collé ton code au bon endroit dans le theme.php ? Il y a un endroit précis ?

helios79

Quote from: François Keller on February 18, 2009, 06:45:17 PM
pourtant chez moi ça marche ( le code donné plus bas commente déjà la ligne qui affiche les stats)

Voici mon theme.php, peux-tu y insérer le code en question ?


François Keller

Avez vous lu la DOC ? la FAQ ? et cherché sur le forum avant de poster ?
Did you read the DOC ? the FAQ ? and search the board before posting ?
Mon Blog

helios79

Merci, malheureusement ça ne fonctionne toujours pas pour moi, j'ai toujours ces infos présentes sur la page d'accueil de ma galerie pour chaque album  :(


François Keller

Avez vous lu la DOC ? la FAQ ? et cherché sur le forum avant de poster ?
Did you read the DOC ? the FAQ ? and search the board before posting ?
Mon Blog

François Keller

je viens de revérifier, ça marche bien chez moi, as tu vidé le cache de ton navigateur et effacé les cookies ?
Avez vous lu la DOC ? la FAQ ? et cherché sur le forum avant de poster ?
Did you read the DOC ? the FAQ ? and search the board before posting ?
Mon Blog

helios79

Quote from: François Keller on February 19, 2009, 06:19:59 PM
je viens de revérifier, ça marche bien chez moi, as tu vidé le cache de ton navigateur et effacé les cookies ?

Oui oui je fais bien tout ce nettoyage avant.

Mais un peu de nouveau tout de même, quand je rentre dans une catégorie, les albums présent n'ont plus l'affichage des stats effectivement, par contre en page d'accueil si, les infos sont toujours là

Voilà mon url pour test : www.unoeilouvert.fr

helios79

En fait elles restent sur la page d'accueil ainsi que sur la page album, mais ont bien disparue lorsque l'on rentre dans une catégorie.
Ce que je recherche c'est cette même action en page d'accueil du site.

François Keller

ok, je vois, je continue de chercher et je te tiens au courant
Avez vous lu la DOC ? la FAQ ? et cherché sur le forum avant de poster ?
Did you read the DOC ? the FAQ ? and search the board before posting ?
Mon Blog

helios79

Quote from: François Keller on February 19, 2009, 06:54:34 PM
ok, je vois, je continue de chercher et je te tiens au courant

Merci beaucoup, et désolé si je ne suis pas toujours très clair  ;D

François Keller

voilà, cette fois je crois que c'est bon, essaye voir
Avez vous lu la DOC ? la FAQ ? et cherché sur le forum avant de poster ?
Did you read the DOC ? the FAQ ? and search the board before posting ?
Mon Blog

helios79

Quote from: François Keller on February 19, 2009, 09:15:03 PM
voilà, cette fois je crois que c'est bon, essaye voir

Merci !! C'est Nickel, tu es vraiment un crack  :D