Einträge in der info.tpl werden unterschiedlich angezeigt

Hallo,

ich habe wiedereinmal ein Problem mit den Einträgen der CMS-Seiten in der info.tpl (Shopversion 4.7.10 CE)

Es sind 2 Seiten angelegt worden, absolut identisch (als Snippet im Ordner “Kundeninfos”) .

In der info.tpl sind Sie eingetragen:

[{assign var="aServices" value=$oView->getServicesList()}]
[{assign var="aServiceItems" value=$oView->getServicesKeys()}]
[{block name="footer_information"}]
    <dl id="footerInformation">
        <dt>[{oxmultilang ident="INFORMATION" }]</dt>
        <dd>
            <ul class="list services">
                [{foreach from=$aServiceItems item=sItem}]
                    [{if isset($aServices.$sItem)}]
                        <li><a href="[{$aServices.$sItem->getLink()}]">[{$aServices.$sItem->oxcontents__oxtitle->value}]</a></li>
                    [{/if}]
                [{/foreach}]
                <li><a href="[{ oxgetseourl ident=$oViewConf->getSelfLink()|cat:"cl=newsletter" }]" rel="nofollow">[{ oxmultilang ident="NEWSLETTER" }]</a></li>
				[{oxifcontent ident="offen" object="oCont"}]  **<--- wird nicht angezeigt**
				[{oxifcontent ident="oxsizes" object="oCont"}]  **<--- wird angezeigt**
<li><a href="[{ $oCont->getLink() }]" >[{ $oCont->oxcontents__oxtitle->value }]</a></li>
[{/oxifcontent}]
[{/oxifcontent}]
            </ul>
        </dd>
    </dl>
[{/block}]

Ich weiß absolut nicht wo da der Fehler liegt :(.

Wenn zwei Einträge dasselbe tun, ist es noch lange nicht dasselbe, scheinbar…

Wer hat einen Rat für mich ?

Gruß BB

[{oxifcontent ident="oxsizes" object="oCont"}]
  <a href="[{ $oCont->getLink() }]">[{ $oCont->oxcontents__oxtitle->value }]</a>
[{/oxifcontent}]
[{oxifcontent ident="offen" object="oCont"}]
  <a href="[{ $oCont->getLink() }]">[{ $oCont->oxcontents__oxtitle->value }]</a>
[{/oxifcontent}]