• Hi,

    I tried this plugin it really works well with my requirements. I just need to know if there is a way to change the Private id to some other number of my choice and then auto increment every time.

    Regards,
    Fasih

Viewing 1 replies (of 1 total)
  • Plugin Author xnau webdesign

    (@xnau)

    No, you’ll break things if you try this. The private ID is meant to be a unique random code. You can use the record ID for this purpose by setting the AUTO_INCREMENT to your initial value. You’ll need to have a little familiarity with phpMyAdmin to make this change to the database.

    Find the name of the main table in participants database, you’ll need to look at the tables to find it. Then your query will be something like:

    ALTER TABLE wp_participants_database AUTO_INCREMENT=1001;

    or whatever you want your starting number to be.

Viewing 1 replies (of 1 total)
  • The topic ‘change private id to some other number’ is closed to new replies.