problème affichage date de publication

Réduire
X
 
  • Filtrer
  • Heure
  • Afficher
Tout effacer
nouveaux messages

  • [RÉGLÉ] problème affichage date de publication

    Bonjour,

    dans mes articles la date de début de publication ne s'affiche pas
    par contre la date de modification apparait comme il faut
    dans mon template j'ai ceci

    où est l'erreur ?


    Code PHP:

        <?php if ($params->get('show_modify_date')) : ?>

                <dd class="modified">

                <?php echo JText::sprintf('COM_CONTENT_LAST_UPDATED'JHTML::_('date',$this->item->modifiedJText::_('DATE_FORMAT_LC2'))); ?>

                </dd>

        <?php endif; ?>




        
            <?php if ($params->get('show_publish_date')) : ?>

                <dd class="published">

                <?php echo JText::sprintf('COM_CONTENT_PUBLISHED_DATE'JHTML::_('date',$this->item->publish_upJText::_('DATE_FORMAT_LC2'))); ?>

                </dd>

        <?php endif; ?>
    Dernière édition par Sergio à 25/11/2011, 12h14


  • #2
    Re : problème affichage date de publication

    quelqu'un pour m'aider ?

    Commentaire


    • #3
      Re : problème affichage date de publication

      Bonjour,
      je ne vois pas d'erreur. Avec un autre template la date apparait ?
      Le paramètre "afficher la date de publication" est à quelle valeur (article, lien de menu, paramètre généraux) ?
      Schtroumpfe toi le Schtroumpf t'aidera.
      Je ne schtroumpfe pas aux demandes de schtroumpf par MP.

      Commentaire


      • #4
        Re : problème affichage date de publication

        avec un autre template apparait
        Publié le mardi 22 novembre 2011 16:13
        et avec ce template (allrounder)
        Date de publication
        et rien d'autre

        donc cela vient du template
        mais je ne vois pas où est l'erreur

        Commentaire


        • #5
          Re : problème affichage date de publication

          Envoyé par Sergio Voir le message
          donc cela vient du template
          mais je ne vois pas où est l'erreur
          Quelque part dans la surcharge de com_content/article/ du template.
          Pas de demande de support par MP.
          S'il n'y a pas de solution, c'est qu'il n'y a pas de problème (Devise Shadok)

          Commentaire


          • #6
            Re : problème affichage date de publication

            Code PHP:
            $params        = $this->item->params;

            $canEdit    = $this->item->params->get('access-edit');

            ?>

            <div class="item-page<?php echo $params->get('pageclass_sfx')?>">

            <?php if ($this->params->get('show_page_heading'1)) : ?>

            <h1 class="componentheading">

                <?php echo $this->escape($this->params->get('page_heading')); ?>

            </h1>

            <?php endif; ?>

            <?php if ($params->get('show_title')|| $params->get('access-edit')) : ?>

                    <h2 class="contentheading">

                            <?php if ($params->get('link_titles') && !empty($this->item->readmore_link)) : ?>

                            <a href="<?php echo $this->item->readmore_link?>">

                                    <?php echo $this->escape($this->item->title); ?></a>

                            <?php else : ?>

                                    <?php echo $this->escape($this->item->title); ?>

                            <?php endif; ?>

                    </h2>

            <?php endif; ?>





            <?php if ($canEdit ||  $params->get('show_print_icon') || $params->get('show_email_icon')) : ?>

                    <ul class="actions">

                    <?php if (!$this->print) : ?>

                            <?php if ($params->get('show_print_icon')) : ?>

                            <li class="print-icon">

                                    <?php echo JHtml::_('icon.print_popup',  $this->item$params); ?>

                            </li>

                            <?php endif; ?>



                            <?php if ($params->get('show_email_icon')) : ?>

                            <li class="email-icon">

                                    <?php echo JHtml::_('icon.email',  $this->item$params); ?>

                            </li>

                            <?php endif; ?>

                            <?php if ($canEdit) : ?>

                                    <li class="edit-icon">

                                        <?php echo JHtml::_('icon.edit'$this->item$params); ?>

                                    </li>

                                <?php endif; ?>

                    <?php else : ?>

                            <li>

                                    <?php echo JHtml::_('icon.print_screen',  $this->item$params); ?>

                            </li>

                    <?php endif; ?>

                    </ul>

            <?php endif; ?>



                <?php  if (!$params->get('show_intro')) :

                    echo 
            $this->item->event->afterDisplayTitle;

                endif; 
            ?>



                <?php echo $this->item->event->beforeDisplayContent?>



            <?php $useDefList = (($params->get('show_author')) OR ($params->get('show_category')) OR ($params->get('show_parent_category'))

                OR (
            $params->get('show_create_date')) OR ($params->get('show_modify_date')) OR ($params->get('show_publish_date'))

                OR (
            $params->get('show_hits'))); ?>



            <?php if ($useDefList) : ?>

            <a class="article-detailer"><?php  echo JText::_('COM_CONTENT_ARTICLE_INFO'); ?></a>

            <dl class="article-info">

                 <dt class="article-info-term"><?php  echo JText::_('COM_CONTENT_ARTICLE_INFO'); ?></dt>

                <?php endif; ?>

                <?php if ($params->get('show_parent_category') && $this->item->parent_slug != '1:root') : ?>

                        <dd class="parent-category-name">

                            <?php    $title $this->escape($this->item->parent_title);

                                    
            $url '<a href="'.JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->parent_slug)).'">'.$title.'</a>';?>

                            <?php if ($params->get('link_parent_category') AND $this->item->parent_slug) : ?>

                                <?php echo JText::sprintf('COM_CONTENT_PARENT'$url); ?>

                                <?php else : ?>

                                <?php echo JText::sprintf('COM_CONTENT_PARENT'$title); ?>

                            <?php endif; ?>

                        </dd>

                <?php endif; ?>

                <?php if ($params->get('show_category')) : ?>

                        <dd class="category-name">

                            <?php     $title $this->escape($this->item->category_title);

                                    
            $url '<a href="'.JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->catslug)).'">'.$title.'</a>';?>

                            <?php if ($params->get('link_category') AND $this->item->catslug) : ?>

                                <?php echo JText::sprintf('COM_CONTENT_CATEGORY'$url); ?>

                                <?php else : ?>

                                <?php echo JText::sprintf('COM_CONTENT_CATEGORY'$title); ?>

                            <?php endif; ?>

                        </dd>

                <?php endif; ?>

                <?php if ($params->get('show_create_date')) : ?>

                        <dd class="create">

                        <?php echo JText::sprintf('COM_CONTENT_CREATED_DATE_ON'JHTML::_('date',$this->item->createdJText::_('DATE_FORMAT_LC2'))); ?>

                        </dd>

                <?php endif; ?>

                <?php if ($params->get('show_modify_date')) : ?>

                        <dd class="modified">

                        <?php echo JText::sprintf('COM_CONTENT_LAST_UPDATED'JHTML::_('date',$this->item->modifiedJText::_('DATE_FORMAT_LC2'))); ?>

                        </dd>

                <?php endif; ?>
                
                    <?php if ($params->get('show_publish_date')) : ?>

                        <dd class="published">

                        <?php echo JText::sprintf('COM_CONTENT_PUBLISHED_DATE'JHTML::_('date',$this->item->publish_upJText::_('DATE_FORMAT_LC2'))); ?>

                        </dd>

                <?php endif; ?>

                <?php if ($params->get('show_author') && !empty($this->item->author )) : ?>

                    <dd class="createdby"> 

                        <?php $author =  $this->item->author?>

                        <?php $author = ($this->item->created_by_alias $this->item->created_by_alias $author);?>

                

                            <?php if (!empty($this->item->contactid ) &&  $params->get('link_author') == true):?>

                                <?php     echo JText::sprintf('COM_CONTENT_WRITTEN_BY' 

                                 
            JHTML::_('link',JRoute::_('index.php?option=com_contact&view=contact&id='.$this->item->contactid),$author)); ?>

                

                            <?php else :?>

                                <?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY'$author); ?>

                            <?php endif; ?>

                    </dd>

                <?php endif; ?>    

                <?php if ($params->get('show_hits')) : ?>

                        <dd class="hits">

                        <?php echo JText::sprintf('COM_CONTENT_ARTICLE_HITS'$this->item->hits); ?>

                        </dd>

                <?php endif; ?>

                <?php if ($useDefList) : ?>

            </dl>

            <?php endif; ?>



                <?php if (isset ($this->item->toc)) : ?>

                    <?php echo $this->item->toc?>

                <?php endif; ?>



                <?php echo $this->item->text?>



                <?php echo $this->item->event->afterDisplayContent?>

            </div>

            Commentaire


            • #7
              Re : problème affichage date de publication

              Re,
              je ne vois pas de différences (vers les dates) avec le code du composant. Tu as essayé d'afficher brutalement la date ailleurs (echo $this->item->publish_up; ) ou à l"inverse de glisser un echo "coucou"; entre le <dd class="modified"> et son </dd> pour essayer de cerner le problème ?
              En passant, tu utilises quelle version ?
              Dernière édition par Grand Schtroumpf à 24/11/2011, 07h43
              Schtroumpfe toi le Schtroumpf t'aidera.
              Je ne schtroumpfe pas aux demandes de schtroumpf par MP.

              Commentaire


              • #8
                Re : problème affichage date de publication

                ben voui
                un
                echo $this->item->publish_up
                affiche bien la date de publication
                et
                echo "truc";
                affiche bien quelque bidule

                J1.7 et allrounder 1.1
                Dernière édition par Sergio à 24/11/2011, 06h41

                Commentaire


                • #9
                  Re : problème affichage date de publication

                  Re,
                  je reviens à ce que tu as écrit plus haut :
                  avec un autre template apparait
                  Publié le mardi 22 novembre 2011 16:13
                  et avec ce template (allrounder)
                  Date de publication
                  La chaine COM_CONTENT_PUBLISHED_DATE dans le fr-FR.com_content.ini est bien "Publié le". Alors d'où sort ce "Date de publication" ? Tu est sûr qu'on regarde le bon code ?
                  "Date de publication" c'est MOD_ARTICLES_NEWS_FIELD_ORDERING_PUBLISHED_DATE dans le fr-FR.mod_articles_news.ini...
                  Schtroumpfe toi le Schtroumpf t'aidera.
                  Je ne schtroumpfe pas aux demandes de schtroumpf par MP.

                  Commentaire


                  • #10
                    Re : problème affichage date de publication

                    oui avec en autre template j'ai
                    Publié le jeudi 24 novembre 2011 06:57
                    ensuite avec allrounder j'ai
                    Date de publication

                    dans /www/templates/allrounder-j1.6/html/com_content/article
                    se trouve le fichier default.php
                    dans lequel j'ai

                    Code PHP:
                        <?php if ($params->get('show_publish_date')) : ?>

                                <dd class="published">

                                <?php echo JText::sprintf('COM_CONTENT_PUBLISHED_DATE'JHTML::_('date',$this->item->publish_upJText::_('DATE_FORMAT_LC2'))); ?>

                                </dd>

                        <?php endif; ?>
                    d’ailleurs si j'enlève toute cette partie la ligne apparait plus


                    et si je remplace
                    COM_CONTENT_PUBLISHED_DATE
                    par
                    MOD_ARTICLES_NEWS_FIELD_ORDERING_PUBLISHED_DATE

                    alors apparait
                    MOD_ARTICLES_NEWS_FIELD_ORDERING_PUBLISHED_DATE
                    dans l'article
                    Dernière édition par Sergio à 25/11/2011, 08h06

                    Commentaire


                    • #11
                      Re : problème affichage date de publication

                      Re,
                      je crois que je l'ai...
                      regarde si tu trouves un fichier language/fr.FR/fr.FR.tpl_tontemplate.ini et corrige dedans la ligne
                      COM_CONTENT_PUBLISHED_DATE="Date de publication"
                      Manque le %s pour que le sprintf puisse insérer la date au bon endroit

                      Ou plus simplement vire la ligne pour retrouver le "publié le".

                      Si tu ne trouves pas un fichier .ini portant ce nom, trouve celui qui ccontient "Date de publication" et même punition.
                      Schtroumpfe toi le Schtroumpf t'aidera.
                      Je ne schtroumpfe pas aux demandes de schtroumpf par MP.

                      Commentaire


                      • #12
                        Re : problème affichage date de publication

                        j'ai retrouvé dans le fichier /www/language/fr-FR/fr-FR.com_content.ini

                        COM_CONTENT_PUBLISHED_DATE="Date de publication"
                        COM_CONTENT_PUBLISHED_DATE_ON="Publié le %s"


                        donc j'ai modifié l'appel dans le template
                        COM_CONTENT_PUBLISHED_DATE
                        par
                        COM_CONTENT_PUBLISHED_DATE_ON

                        et ça fonctionne

                        merci
                        Dernière édition par Sergio à 25/11/2011, 12h14

                        Commentaire


                        • #13
                          Re : problème affichage date de publication

                          oups j''avais passé ce post en réglé mais je viens de m'apercevoir que dans l'article ça s'affiche normalement mais pas sur la page d'accueil

                          huuummmmmmmmmmm

                          je cherche dans le template et bingo dans
                          /www/templates/allrounder-j1.6/html/com_content/featured
                          le fichier
                          default_item.php
                          dans lequel il faut changer aussi

                          COM_CONTENT_PUBLISHED_DATE
                          par
                          COM_CONTENT_PUBLISHED_DATE_ON

                          si ça peut servir ...
                          Dernière édition par Sergio à 26/11/2011, 08h09

                          Commentaire


                          • #14
                            Re : problème affichage date de publication

                            Bonjour,

                            J'ai le même problème sur tous mes templates créés avec Artisteer, ma version de Joomla! v1.7.3. Votre réponse m'a été utile, merci.

                            Commentaire


                            • #15
                              Re : problème affichage date de publication

                              la ligne "COM_CONTENT_PUBLISHED_DATE_ON="Publié le %s" était bien absente de mon /www/language/fr-FR/fr-FR.com_content.ini

                              merci

                              Commentaire

                              Annonce

                              Réduire
                              Aucune annonce pour le moment.

                              Partenaire de l'association

                              Réduire

                              Hébergeur Web PlanetHoster
                              Travaille ...
                              X