Viewing 1 replies (of 1 total)
  • Plugin Author samwilson

    (@samwilson)

    1. Yes, you can create a view such as this:

    SELECT cs.id AS changeset_id, c.id AS change_id, date_and_time,
      user_nicename, table_name, record_ident, column_name, old_value,
      new_value, comment
    FROM wp_tabulate_changes c
      JOIN wp_tabulate_changesets cs ON (c.changeset_id=cs.id)
      JOIN wp_users u ON (u.ID=cs.user_id)
    

    Of course, change the database prefix to whatever’s correct.

    2. Not at the moment, I’m afraid, and there isn’t a plan to make this happen. Not that it’s not a good idea though. I’ll add it to the future-features list! ??

    Thanks,
    Sam

    PS Sorry for the delay in replying, I only just saw this post.

Viewing 1 replies (of 1 total)
  • The topic ‘track changes’ is closed to new replies.