[TYPO3-english] TYPO3 categori menu issue with EXT: News System KEY: news VER: 2.2.1

Thomas Petersen tp at codem.dk
Thu Dec 26 12:01:31 CET 2013



Running TYPO3 v. 6.1 FLUID/EXTBASE.

I have a categori menu, but when I click a link then it's mark the link with the "activ" link class, but I do not get to the link.

If I copy/past the link into the browser its's works fine, so the links is working, its just my buttons thats not getting me to the link.

If u look http://codem.dk/oevelser/  u can see the start page, if u then click one of the 7 link, u can see it activate the link style, but i don't get to the link, try click "angreb" then u can see the link is http://codem.dk/oevelser/newsCategoryConfiguration/angreb/ but when I click I still is on the page http://codem.dk/oevelser/ but if i right-click the link and say "Open in new window" then its working fine.

If more info/code is needed, then say it.

my code is.

{namespace n=Tx_News_ViewHelpers}
<f:layout name="General" />
<!--
  =====================
    Templates/Category/List.html
-->

<f:section name="content">
  <f:if condition="{categories}">   
    <f:then>
      <f:if condition="{settings.templateLayout} == 110">
        <f:then>
          <div id="categories-2" class="widget widget_meta widget_categories">
            <ul>
              <f:render section="categoryTree" arguments="{categories:categories,overwriteDemand:overwriteDemand}" />
            </ul>
          </div>
        </f:then>
        <f:else>
          <f:if condition="{settings.templateLayout} == 111">
            <f:then>
              <div class="portfolio-tabs clearfix">
                <ul class="clearfix">
                  <f:render section="categoryDrill" arguments="{categories:categories,overwriteDemand:overwriteDemand}" />
                </ul>
              </div>
            </f:then>
          </f:if>
        </f:else>           
      </f:if>
    </f:then>  
    <f:else>
      <f:translate key="list_nocategoriesfound" />
    </f:else>
  </f:if>    
</f:section>

<f:section name="categoryDrill">
  <f:for each="{categories}" as="category">
    <f:if condition="{category.item.uid} == {overwriteDemand.categories}">
      <f:then>        
        <li class="active">
          <f:link.page pageUid="{settings.listPid}" additionalParams="{tx_news_pi1:{overwriteDemand:{categories: category.item.uid}}}">{category.item.title}
          </f:link.page>
        </li>
      </f:then>
      <f:else>
        <li>
          <f:link.page pageUid="{settings.listPid}" additionalParams="{tx_news_pi1:{overwriteDemand:{categories: category.item.uid}}}">{category.item.title}
          </f:link.page>
        </li>
      </f:else>
    </f:if>     
    <f:if condition="{category.children}">
      <f:render section="categoryDrill" arguments="{categories: category.children,overwriteDemand:overwriteDemand}" />
    </f:if>    
  </f:for>
</f:section>




More information about the TYPO3-english mailing list