Complete demo data with VirtueMart, MembershipPro, and Dolibarr

This commit is contained in:
copilot-swe-agent[bot]
2026-01-29 23:16:07 +00:00
parent 644b08578d
commit 7a0c6f56c8
9 changed files with 988 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
-- VirtueMart Featured Products Configuration
-- Version: 1.0.0
-- Mark specific products as featured for homepage display
-- Featured Products
-- Set product_special = 1 for featured items
UPDATE `#__virtuemart_products` SET `product_special` = 1 WHERE `virtuemart_product_id` IN (
102, -- Smartphone Pro 12
104, -- Wireless Headphones Pro
201, -- Slim Fit Jeans (on sale)
203, -- Women's Casual Blouse
301 -- Ergonomic Office Chair (on sale)
);
-- Alternative: Create a featured products relation table if your VirtueMart version uses it
-- INSERT INTO `#__virtuemart_product_featured` (`virtuemart_product_id`, `ordering`, `published`) VALUES
-- (102, 1, 1),
-- (104, 2, 1),
-- (201, 3, 1),
-- (203, 4, 1),
-- (301, 5, 1);