php - SPIP: From Tag directly to an article -


i work spip , plugin called tagsphere works fine tags in spip. have tag groupe put 1 article tag. when click on tag in tagsphere send me before menu can see articles linked tag. want send me directly article without see tag menu before.

here code model of thagsphere:

            <div id="tagsphere-#env{id_article}">                  <ul>                 <boucle_mot(mots){id_groupe ?}>                                      <li>[<a href="#url_mot">(#titre)</a>]</li>                   </boucle_mot>                     </ul>             </div> 

anybody idea?

if want skip tag page, have link directly article. <b_article> block prevents display tag if no article linked.

<div id="tagsphere-#env{id_article}">      <ul>         <boucle_mot(mots){id_groupe ?}>               <b_article>             <li>                 <a<boucle_article(articles){id_mot = #id_mot}{0, 1}> href="#url_article"</boucle_article>>                 #titre                 </a>             </li>               </b_article>         </boucle_mot>        </ul> </div> 

Comments

Popular posts from this blog

Android layout hidden on keyboard show -

google app engine - 403 Forbidden POST - Flask WTForms -

c - Why would PK11_GenerateRandom() return an error -8023? -