Forum Replies Created

Viewing 1 replies (of 1 total)
  • Hey. I have the same problem. As a quick temporary fix you can edit the file ./wp-content/themes/catch-responsive/inc/catchresponsive-featured-slider.php

    Find

    function catchresponsive_featured_slider() {
            global $post, $wp_query;
            //catchresponsive_flush_transients();

    Here you can see commented out function that deletes all cached stuff. Uncommenting it will slow your site down really much, but you can add this right after that code piece:
    delete_transient( 'catchresponsive_featured_slider' );

    But yet again, this corrections will be erased on theme update and its ugly by itself =(

Viewing 1 replies (of 1 total)