Viewing 1 replies (of 1 total)
  • Thread Starter ouija

    (@ouija)

    Managed to figure out how the plugin works in relation to logging data to these tables; Here’s a method I’m using via functions.php to disable this (and you can also then empty this wp_wcfm_detailed_analysis table, as well as the wp_wcfm_daily_analysis table:

    
    function remove_action_wcfm_save_page_analytics_data() {
        global $WCFM;
        remove_action( 'wp_footer', array( $WCFM->frontend, 'wcfm_save_page_analytics_data' ) );
    }
    add_action( 'wp_head', 'remove_action_wcfm_save_page_analytics_data' );
    

    Enjoy.

Viewing 1 replies (of 1 total)
  • The topic ‘Disable “wp_wcfm_detailed_analysis” table and purge data’ is closed to new replies.