Out of despair, I ask question here.
I have a phtml (top_links.phtml) file that is cached when I am not logged in but not cached when I am logged in. I need it to be never cached as I display the geolocation there.
I tried
<?php echo $this->getChildHtml('topLinks',false); ?>
in the header.phtml
I tried
<block type="page/html" name="top.links2" as="topLinks" template="page/html/top_links.phtml">
<action method="unsetData"><key>cache_lifetime</key></action>
<action method="unsetData"><key>cache_tags</key></action>
</block>
in my layout.xml
I tried to do as recommended there.
none worked. Then I realized that when logged in, it is not cached...
Can somebody give me some pointers?
Thanks already
<action method="setCacheLifetime"><time>null</time></action>?<time>0</time>, no luck neither...