-- VirtueMart Sample Categories -- Version: 1.0.0 -- Compatible with: VirtueMart 4.x -- NOTE: Replace #__ with your actual Joomla table prefix (e.g., jos_) -- Root Categories INSERT INTO `#__virtuemart_categories_en_gb` (`virtuemart_category_id`, `category_name`, `category_description`, `metadesc`, `metakey`, `slug`) VALUES (1, 'Electronics', '

Shop the latest electronics, computers, phones, and accessories.

', 'Electronics, computers, phones, tablets, accessories', 'electronics, technology, gadgets', 'electronics'), (2, 'Clothing & Apparel', '

Fashion for everyone - mens, womens, and kids clothing.

', 'Clothing, fashion, apparel, mens, womens, kids', 'clothing, fashion, apparel', 'clothing-apparel'), (3, 'Home & Garden', '

Everything for your home - furniture, decor, garden tools, and more.

', 'Home, garden, furniture, decor, tools', 'home, garden, furniture', 'home-garden'), (4, 'Sports & Outdoors', '

Gear up for adventure with sports equipment and outdoor essentials.

', 'Sports, outdoors, equipment, camping, fitness', 'sports, outdoors, fitness', 'sports-outdoors'), (5, 'Books & Media', '

Books, ebooks, audiobooks, and entertainment media.

', 'Books, ebooks, audiobooks, media, entertainment', 'books, media, reading', 'books-media'); -- Electronics Subcategories INSERT INTO `#__virtuemart_categories_en_gb` (`virtuemart_category_id`, `category_name`, `category_description`, `slug`) VALUES (10, 'Computers & Laptops', '

Desktop computers, laptops, and computer accessories.

', 'computers-laptops'), (11, 'Smartphones & Tablets', '

Latest smartphones, tablets, and mobile devices.

', 'smartphones-tablets'), (12, 'Audio & Headphones', '

Headphones, earbuds, speakers, and audio equipment.

', 'audio-headphones'), (13, 'Camera & Photography', '

Digital cameras, lenses, and photography accessories.

', 'camera-photography'), (14, 'TV & Video', '

Televisions, streaming devices, and video equipment.

', 'tv-video'); -- Clothing Subcategories INSERT INTO `#__virtuemart_categories_en_gb` (`virtuemart_category_id`, `category_name`, `category_description`, `slug`) VALUES (20, 'Mens Clothing', '

Mens shirts, pants, jackets, and accessories.

', 'mens-clothing'), (21, 'Womens Clothing', '

Womens dresses, tops, bottoms, and accessories.

', 'womens-clothing'), (22, 'Kids Clothing', '

Clothing for boys and girls of all ages.

', 'kids-clothing'), (23, 'Shoes & Footwear', '

Shoes, boots, sandals, and athletic footwear.

', 'shoes-footwear'), (24, 'Accessories', '

Bags, hats, scarves, jewelry, and fashion accessories.

', 'accessories'); -- Home & Garden Subcategories INSERT INTO `#__virtuemart_categories_en_gb` (`virtuemart_category_id`, `category_name`, `category_description`, `slug`) VALUES (30, 'Furniture', '

Living room, bedroom, dining, and office furniture.

', 'furniture'), (31, 'Home Decor', '

Wall art, lighting, rugs, and decorative items.

', 'home-decor'), (32, 'Kitchen & Dining', '

Cookware, dinnerware, and kitchen appliances.

', 'kitchen-dining'), (33, 'Garden & Outdoor', '

Garden tools, plants, patio furniture, and outdoor living.

', 'garden-outdoor'), (34, 'Home Improvement', '

Tools, hardware, and home improvement supplies.

', 'home-improvement'); -- Sports Subcategories INSERT INTO `#__virtuemart_categories_en_gb` (`virtuemart_category_id`, `category_name`, `category_description`, `slug`) VALUES (40, 'Fitness Equipment', '

Home gym equipment, weights, and fitness accessories.

', 'fitness-equipment'), (41, 'Team Sports', '

Equipment for football, basketball, baseball, and more.

', 'team-sports'), (42, 'Outdoor Recreation', '

Camping, hiking, and outdoor adventure gear.

', 'outdoor-recreation'), (43, 'Athletic Apparel', '

Sports clothing, activewear, and athletic shoes.

', 'athletic-apparel'), (44, 'Water Sports', '

Swimming, surfing, diving, and water sports equipment.

', 'water-sports'); -- Books Subcategories INSERT INTO `#__virtuemart_categories_en_gb` (`virtuemart_category_id`, `category_name`, `category_description`, `slug`) VALUES (50, 'Fiction', '

Novels, short stories, and literary fiction.

', 'fiction'), (51, 'Non-Fiction', '

Biographies, history, science, and educational books.

', 'non-fiction'), (52, 'Childrens Books', '

Books for babies, toddlers, kids, and young adults.

', 'childrens-books'), (53, 'Ebooks & Audiobooks', '

Digital books and audio formats.

', 'ebooks-audiobooks'), (54, 'Magazines & Journals', '

Periodicals, magazines, and academic journals.

', 'magazines-journals'); -- Category Hierarchy (parent-child relationships) INSERT INTO `#__virtuemart_categories` (`virtuemart_category_id`, `virtuemart_vendor_id`, `category_parent_id`, `ordering`, `published`) VALUES -- Root categories (1, 1, 0, 1, 1), (2, 1, 0, 2, 1), (3, 1, 0, 3, 1), (4, 1, 0, 4, 1), (5, 1, 0, 5, 1), -- Electronics subcategories (10, 1, 1, 1, 1), (11, 1, 1, 2, 1), (12, 1, 1, 3, 1), (13, 1, 1, 4, 1), (14, 1, 1, 5, 1), -- Clothing subcategories (20, 1, 2, 1, 1), (21, 1, 2, 2, 1), (22, 1, 2, 3, 1), (23, 1, 2, 4, 1), (24, 1, 2, 5, 1), -- Home & Garden subcategories (30, 1, 3, 1, 1), (31, 1, 3, 2, 1), (32, 1, 3, 3, 1), (33, 1, 3, 4, 1), (34, 1, 3, 5, 1), -- Sports subcategories (40, 1, 4, 1, 1), (41, 1, 4, 2, 1), (42, 1, 4, 3, 1), (43, 1, 4, 4, 1), (44, 1, 4, 5, 1), -- Books subcategories (50, 1, 5, 1, 1), (51, 1, 5, 2, 1), (52, 1, 5, 3, 1), (53, 1, 5, 4, 1), (54, 1, 5, 5, 1);