Widget qui ne s'ouvre plus quand la réécriture url est active

FSKTFSKT Member
février 2013 modifié dans Bogues
Bonjour,


Avant toute chose, je suis sous le thème mystique que voici : http://ressources.pluxml.org/?theme86/theme-mystique


Sur la droite de ce thème (sidebar) il y a un widget qui permet d'avoir diverses informations du type :
- Catégories
- Derniers articles
- etc,... (les 5 icônes visibles sur la page de présentation)


C'est peut être un truc tout bête mais quand je charge ma page, le widget ne s'ouvre pas. Il indique que il y a bien un onglet de sélectionné mais il ne s'ouvre pas. Il faut alors aller cliquer sur les autres onglets pour débloquer le truc.


Ce problème disparaît quand je désactive la réécriture d'url.


Merci de votre aide !


Voici le code du widget :
                    <div class="tabbed-content sidebar-tabs clearfix" id="instance-sidebartabswidget">

                      <!-- tab navigation (items must be in reverse order because of the tab-design) -->
                      <ul class="box-tabs clearfix">
                        <li class="archives"><a href="#instance-sidebartabswidget-section-archives" title="<?php $plxShow->lang('ARCHIVES') ?>"><span><?php $plxShow->lang('ARCHIVES') ?></span></a></li>

                        <li class="tags"><a href="#instance-sidebartabswidget-section-tags" title="<?php $plxShow->lang('TAGS') ?>"><span><?php $plxShow->lang('TAGS') ?></span></a></li>

                        <li class="recentcomm"><a href="#instance-sidebartabswidget-section-recentcomments" title="<?php $plxShow->lang('LAST_COMMENTS') ?>"><span><?php $plxShow->lang('LAST_COMMENTS') ?></span></a></li>

                        <li class="popular"><a href="#instance-sidebartabswidget-section-popular" title="<?php $plxShow->lang('LAST_ARTICLES') ?>"><span><?php $plxShow->lang('LAST_ARTICLES') ?></span></a></li>

                        <li class="categories"><a href="#instance-sidebartabswidget-section-categories" title="<?php $plxShow->lang('CATEGORIES') ?>"><span><?php $plxShow->lang('CATEGORIES') ?></span></a></li>
                      </ul>
                      <!-- /tab nav -->

                      <!-- tab sections -->
                      <div class="sections">

                        <div class="box section" id="instance-sidebartabswidget-section-categories">
                          <div class="box-top-left">
                            <div class="box-top-right"></div>
                          </div>

                          <div class="box-main">
                            <div class="box-content">
                              <ul class="menuList categories">
                                <?php $plxShow->catList('','<li id="#cat_id"><a href="#cat_url" class="#fadeThis cat_status" title="#cat_name"><span class="entry">#cat_name (#art_nb)</span></a></li>'); ?>
                              </ul>
                            </div>
                          </div>
                        </div>

                        <div class="box section" id="instance-sidebartabswidget-section-tags">
                          <div class="box-top-left">
                            <div class="box-top-right"></div>
                          </div>

                          <div class="box-main">
                            <div class="box-content">
                              <div class="tag-cloud">
		                        <ul>
		                         <?php $plxShow->tagList('<li class="#tag_status #tag_size"><a href="#tag_url" title="#tag_name">#tag_name</a></li>', 20); ?>
		                        </ul>
                              </div>
                            </div>
                          </div>
                        </div>

                        <div class="box section" id="instance-sidebartabswidget-section-archives">
                          <div class="box-top-left">
                            <div class="box-top-right"></div>
                          </div>

                          <div class="box-main">
                            <div class="box-content">
                              <ul class="menuList">
                                <?php $plxShow->archList('<li id="#archives_id" class="#archives_status"><a href="#archives_url" class="fadeThis" title="#archives_name"><span class="entry">#archives_name <span class="details inline">(#archives_nbart)</span></span></a></li>'); ?>
                              </ul>
                            </div>
                          </div>
                        </div>

                        <div class="box section" id="instance-sidebartabswidget-section-popular">
                          <div class="box-top-left">
                            <div class="box-top-right"></div>
                          </div>

                          <div class="box-main">
                            <div class="box-content">
                              <ul class="menuList">
                                <?php $plxShow->lastArtList('<li><a href="#art_url" class="fadeThis #art_status" title="#art_title"><span class="entry">#art_title</span></a></li>'); ?>
                              </ul>
                            </div>
                          </div>
                        </div>

                        <div class="box section" id="instance-sidebartabswidget-section-recentcomments">
                          <div class="box-top-left">
                            <div class="box-top-right"></div>
                          </div>

                          <div class="box-main">
                            <div class="box-content">
                              <ul class="menuList recentcomm">
                                <?php $plxShow->lastComList('<li class="clearfix"><a href="#com_url"><span class="entry">#com_author '.$plxShow->getLang('SAID').': <span class="details">#com_content(34)</span></span></a></li>'); ?>
                              </ul>
                            </div>
                          </div>
                        </div>
                      </div>
                    </div>

Réponses

  • C'est très bizarre comme truc... Je ne vois pas du tout comment cela peut se produire. Essai de contacter le créateur du thème pour voir si il n'a pas un correctif pour ce soucis.
  • FrédéricFrédéric Member
    février 2013 modifié
    Bonjour, remplace cette partie:
                          <!-- tab navigation (items must be in reverse order because of the tab-design) -->
                          <ul class="box-tabs clearfix">
                            <li class="archives"><a href="<?php $plxShow->urlRewrite('#instance-sidebartabswidget-section-archives') ?>" title="<?php $plxShow->lang('ARCHIVES') ?>"><span><?php $plxShow->lang('ARCHIVES') ?></span></a></li>
    
                            <li class="tags"><a href="<?php $plxShow->urlRewrite('#instance-sidebartabswidget-section-tags') ?>" title="<?php $plxShow->lang('TAGS') ?>"><span><?php $plxShow->lang('TAGS') ?></span></a></li>
    
                            <li class="recentcomm"><a href="<?php $plxShow->urlRewrite('#instance-sidebartabswidget-section-recentcomments') ?>" title="<?php $plxShow->lang('LAST_COMMENTS') ?>"><span><?php $plxShow->lang('LAST_COMMENTS') ?></span></a></li>
    
                            <li class="popular"><a href="<?php $plxShow->urlRewrite('#instance-sidebartabswidget-section-popular') ?>" title="<?php $plxShow->lang('LAST_ARTICLES') ?>"><span><?php $plxShow->lang('LAST_ARTICLES') ?></span></a></li>
    
                            <li class="categories"><a href="<?php $plxShow->urlRewrite('#instance-sidebartabswidget-section-categories') ?>" title="<?php $plxShow->lang('CATEGORIES') ?>"><span><?php $plxShow->lang('CATEGORIES') ?></span></a></li>
                          </ul>
                          <!-- /tab nav -->
    
    A savoir l'ajout de la fonction qui detecte la réécriture d'url dans les lien de tabulation.
    <?php $plxShow->urlRewrite('#instance-sidebartabswidget-section-categories') ?>
    

    Je le mettrais à jour ainsi que la modification pour ne pas afficher le mot 'commentaires' a coté du Nombre.
    Ce qui permet d'ajouter plus de catégorie a coté sans déformer le thème.
  • Merci Frédéric pour ta réponse très rapide. Pas besoin de me répondre par mail, j'ai tout ici.


    Bonne après-midi !
  • FSKTFSKT Member
    février 2013 modifié
    Malheureusement ça ne marche pas. Ça me fait le même problème c'est à dire que le widget ne s'ouvre pas quand on lance la page malgré qu'il y a la petite flèche comme si c'était sélectionné.


    EDIT : J'ai remarqué qu'au premier lancement ça marche mais dès qu'on sélectionne une fois, c'est fini ça ne marche plus et je reviens avec le même problème. Testé sous chrome et IE.


    EDIT2 : la même chose avec le navigateur d'Android (chrome).


    EDIT3 : Le vidage du cache ne règle pas le soucis
Connectez-vous ou Inscrivez-vous pour répondre.