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:

UPDATE settings SET txtValue = ‘s:4:”true”;’ WHERE txtKey LIKE ‘displayQuickLinksForUseradmin’;

Replace admin with the username of the user for whom you want to enable the feature.

Step 3: Add Quick Links via the Dashboard

  1. Login as Admin or the Enabled User
    Go to the URL where your ERP Dashboard is hosted, e.g., http://zivah.itserver.biz.local/admin/index.php.
  2. Navigate to the Quick Links Section
    On the Dashboard, locate the “Add QuickLink” section, as shown in the provided images.

 

 

  1.  Add a Category
    You can add a new category by entering the category name in the “Add Category” section and clicking “Add Category”.
  2. Add a Quick Link
    • Select a category (e.g.,Sales,Accounts, etc.).
    • Select a Quick Link (e.g.,Sales Report).
    • Click “Add QuickLink” to save the link.

Leave a Reply

Your email address will not be published. Required fields are marked *