• Resolved James

    (@jgraham719)


    Hello,

    I am wondering if I can view past user search indexes, on the main page I can only view the last 30 days. Also, is it possible to generate a report based on user search information. Apologies if this has been asked before, can’t find it though.

    Many Thanks

    -james

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Mikko Saari

    (@msaari)

    The logs are not removed, they are stored in the wp_relevanssi_log database table. You can access the data directly there to do whatever you want with it.

    You can also adjust the 30 day limit like this:

    add_filter('relevanssi_30days', 'rlv_set_days');
    function rlv_set_days($days) {
        return 100;
    }

    Add this code to your theme functions.php, and the logs now show results from 100 day period.

    Thread Starter James

    (@jgraham719)

    Thanks Mikko, you’re awesome!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘User Searches Past 30 Days’ is closed to new replies.