• Hi, I have a very low skill level so excuse me if I can’t articulate this very well.

    I love the cache and it helps quite a bit.
    I run a translation site which allows users to translate documents through a front-end interface plugin called Transposh.
    I would like it if every time a user saved a translated segment, it cleared the cache for that page, so that other users would not get fed a version of the page that doesn’t show that translation.

    The site is http://www.chinalawtranslate.com I am happy to upgrade to Pro or whatnot, but would really appreciate your help.

    https://wordpress.org/plugins/quick-cache/

Viewing 1 replies (of 1 total)
  • Plugin Author Raam Dev

    (@raamdev)

    Hello,

    You can try adding the following code to an MU-Plugin.

    First, create this directory an file if it doesn’t already exist: wp-content/mu-plugins/transposh-quick-cache.php

    Then, add the following code to the transposh-quick-cache.php file:

    <?php
    
    add_action( 'clear_cache_after_translation_posted', 'transposh_translation_posted' );
    
    function clear_cache_after_translation_posted( ) {
        global $post;
        if (is_numeric($post->ID))
            $GLOBALS['quick_cache']->auto_purge_post_cache($post->ID);
    }

    Try that and see if that clears the cache for the page where an update to the translation happens.

Viewing 1 replies (of 1 total)
  • The topic ‘Cache clear after front-end action’ is closed to new replies.