• I have a need to add the date that they agreed to the terms of use to a custom page. Is there any way that I can do that?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Steph Wells

    (@sswells)

    The date and initials are stored in the WP user meta table. You can retrieve anything in this table with:

    global $user_ID;
    get_user_meta($user_ID, ‘terms_and_conditions’);

    The initials are stored as ‘tou_initials’.

    Thread Starter whiteorb

    (@whiteorb)

    But is it the date that they agreed to the terms of use on a page?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Adding the Accept date on a custom page’ is closed to new replies.