diff --git a/public/support.html b/public/support.html
index c5c2de8..65bf363 100644
--- a/public/support.html
+++ b/public/support.html
@@ -116,10 +116,10 @@ Please note: it does not cover general Odoo usage or functional questions.
Usage Tips:
-
- Click Create a Ticket or type
/ticket to get in touch with our support team.
+ Type /ticket to get in touch with our support team.
-
- ✨ Feature Requests
+ Feature Requests
Suggest a new feature for our services by leaving a comment in the chat using this format:
/feature: [Your description here]
Example:
@@ -127,7 +127,7 @@ Please note: it does not cover general Odoo usage or functional questions.
@@ -165,6 +165,7 @@ Please note: it does not cover general Odoo usage or functional questions.
const input = document.getElementById('messageInput');
const sendBtn = document.getElementById('sendBtn');
document.getElementById('webhook').textContent = WEBHOOK;
+ const uuid = params.get("uuid");
// Generate UUID once per page load
function generateUUID(){
@@ -279,7 +280,7 @@ Please note: it does not cover general Odoo usage or functional questions.
input.addEventListener('keydown', (e)=>{ if(e.key === 'Enter' && !e.shiftKey){ e.preventDefault(); sendMessage(); } });
// friendly welcome
- appendMessage('I am here to help with all your hosting-related questions.Type /ticket to contact our support team directly.', 'them');
+ appendMessage('I am here to help with all your hosting-related questions.Type /ticket to contact our support team directly. Your UUID is '+uuid, 'them');