0

i want to completely remove from cache the header-minicart. It is confused when magento cache and fpc work together.

how can i do that?

Pantelis
  • 109
  • 1
  • 10

1 Answers1

0

You can remove a particular block cache by using below code,

<reference name="needed block">
    <action method="setCacheLifetime"><s>0</s></action>
</reference>

or

<reference name="needed block">
    <action method="setCacheLifetime" />
</reference>

OR from backend:

goto -> admin -> dashboard -> System configuration -> cache management -> disable for block.

find find the attached screen shot:

enter image description here

Rita Jose
  • 1,840
  • 8
  • 28
  • 46