Page comes up blank using w3 total cache [closed]

You can turn off caching for your wp_list_comments template by placing define('DONOTCACHEPAGE', true); at the top of the page.

Other constants available on a per page or template basis are:

  • define('DONOTCACHEDB', true);

    Disables database caching for given page.

  • define('DONOTMINIFY', true);

    Disables minify for a given page.

  • define('DONOTCDN', true);

    Disables content delivery network for a given page.

  • define('DONOTCACHCEOBJECT', true);

    Disables object cache for a given page.