Review Queue
Approve or reject product submissions from sellers.
0
Pending
0
Approved
0
Rejected
0
Total
Orders
All orders placed by customers — confirm, dispatch and track delivery.
All Products
Every product submission across all sellers.
Product
Seller
Price
Category
Status
Actions
Sellers
Manage all registered sellers. Add, edit, verify or suspend.
Live Chat
Respond to customer messages from the website chat.
Messages
0 conversations
Select a conversation
Click a customer message on the left to open it
Settings
Manage admin accounts and platform configuration.
Admin Accounts
My Account
Search @userinfobot on Telegram and press Start to get your ID
Telegram Setup Guide
Every admin who wants notifications must do these 3 steps once:
1
Start the Anchor Hub bot
Open Telegram and search for @anchorhubmarket_bot then press Start
2
Get your Chat ID
Search @userinfobot on Telegram → press Start → copy the Id number
3
Enter your Chat ID above
Paste it in the My Telegram Chat ID field above and click Save Changes then Test Notification
Super Admin always receives notifications automatically. Other admins only receive notifications after entering their Chat ID. Support staff only receive live chat alerts. Moderators only receive product upload alerts.
Database Status
Connected to Supabase (EU Frankfurt). Real-time subscriptions active.
Supabase Connected & Live
Live Chat SQL (run once in Supabase):
CREATE TABLE live_chats ( id bigserial primary key, session_id text, customer_name text, customer_phone text, message text, messages text, status text default 'open', created_at timestamptz default now(), updated_at timestamptz default now() ); ALTER TABLE live_chats ENABLE ROW LEVEL SECURITY; CREATE POLICY "public_insert" ON live_chats FOR INSERT WITH CHECK (true); CREATE POLICY "public_read" ON live_chats FOR SELECT USING (true); CREATE POLICY "public_update" ON live_chats FOR UPDATE USING (true); -- Admin notifications table: CREATE TABLE admin_notifications ( id bigserial primary key, type text, title text, message text, seller_email text, seller_name text, read boolean default false, created_at timestamptz default now() ); ALTER TABLE admin_notifications ENABLE ROW LEVEL SECURITY; CREATE POLICY "public_insert" ON admin_notifications FOR INSERT WITH CHECK (true); CREATE POLICY "public_read" ON admin_notifications FOR SELECT USING (true); CREATE POLICY "public_update" ON admin_notifications FOR UPDATE USING (true); -- Orders table: CREATE TABLE orders ( id bigserial primary key, order_id text unique, customer_name text, customer_phone text, delivery_location text, items text, seller_orders text, total numeric, payment_method text, status text default 'pending', created_at timestamptz default now() ); ALTER TABLE orders ENABLE ROW LEVEL SECURITY; CREATE POLICY "public_insert" ON orders FOR INSERT WITH CHECK (true); CREATE POLICY "public_read" ON orders FOR SELECT USING (true); CREATE POLICY "public_update" ON orders FOR UPDATE USING (true);