Step 1: Check Existing Quick Link Settings
Run the following SQL query to view the current configuration of the Quick Links feature for specific users:
SELECT * FROM settings WHERE txtKey LIKE ‘%displayQuickLinksForUser%’;
This query will return a list of users and whether the Quick Links feature is enabled or disabled for each. Look for the txtValue column:
- s:5:”false”; indicates the feature is disabled.
- s:4:”true”; indicates the feature is enabled.
Step 2: Enable Quick Links for a Specific User
To enable Quick Links for a specific user (e.g., admin), update the txtValue in the settings table using the following SQL query: