Viewing 3 replies - 1 through 3 (of 3 total)
  • I need to know too

    In the “Invitation Codes List” section, hit the “Clear all codes” button. It’s better to do this before you add a bunch of codes… That seems to be the only way to get rid of it.

    Hi,

    regarding the ability to delete the pregenerated “INVITATION” and random gernerated keys. There is a solution by correcting the code on your own. But it may be worth the trouble for managing the keys in the future without erasing everything.

    I just explored the plugin code. There is a bug in the “back-end.php” on line 201.
    the line
    $code = isset( $_GET['code'] ) ? sanitize_key( $_GET['code']) : false;
    should actually be
    $code = isset( $_GET['code'] ) ? strtoupper(sanitize_key( $_GET['code'])) : false;

    It seem there are a few places where the “strtoupper()” is missing and causing trouble.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Delete INVITATION code?’ is closed to new replies.