Question


How can I assign a template to a specific user?


Answer


You can assign a template to a specific user via the database. The templates table contains the user_id field which is set to NULL by default. If it is set to a user ID, the template will be assigned to this user only.

Use the following command:

mysql> update templates set user_id=243 where id=373 limit 1;
CODE

It will assign the template with id=373 to the user with id=243.