Implement logic to skip categories with zero items in index.php, improving the display of available weapon categories and enhancing user experience.

This commit is contained in:
Bram Suurd
2025-06-30 00:30:21 +02:00
parent b87639d0e2
commit a43de55776

View File

@@ -145,6 +145,11 @@ if (isset($_SESSION['steamid'])) {
}
}
}
// Skip categories with 0 items
if ($weaponCount == 0) {
continue;
}
?>
<div class="nav-category">
<div class="nav-item category-header" data-category="<?php echo strtolower($categoryName); ?>" onclick="toggleCategory('<?php echo strtolower($categoryName); ?>')">