Emergency Phone Tower
The Emergency Phone Tower is a highly visible and reliable communication point designed to provide immediate assistance in critical situations. Built for public safety, these towers offer fast, direct, and hands-free communication with emergency response centers, ensuring rapid support when every second counts.
VTA8311A-4
VTA8311A
Field Surveillance Unit
The Dahua Field Surveillance Unit is a mobile, high-performance security solution designed to deliver reliable monitoring in challenging outdoor environments. Equipped with advanced Dahua imaging technology, this unit provides high-resolution video, intelligent analytics, and real-time remote access to support rapid response and situational awareness.
TC-LLD-5M
TC-LLD-102
CT20-100A/20mA
DTSD3366M-4H
Wired Alarm
The Dahua Wired Alarm System is a stable and high-precision security solution designed for environments that require reliable, continuous protection. Utilizing hard-wired connections, this system ensures consistent performance, minimized interference, and fast, accurate signal transmission—making it ideal for residential, commercial, and industrial applications.
ARA58-G-IT
ARA58-G-EN
ARK30C
ARM802
Wireless Alarm
The Dahua Wireless Alarm System is a flexible, modern security solution designed to deliver reliable protection without the need for complex cabling. Using secure wireless communication, this system offers easy installation, quick deployment, and excellent adaptability for residential, commercial, and small industrial environments.
ARA24-W2(868)
ARA24-W2
ARD323-W2(868)
ARD323-W2
4G Series
4G Series
Dahua 4G Series cameras leverage cellular networks for remote surveillance, enabling monitoring in locations without wired internet access.

Access Control
Access Control
Dahua Security Access Control is a physical security solution designed to regulate and monitor who can enter specific areas within a building or facility. It replaces traditional locks and keys with electronic systems that authenticate individuals before granting access, improving safety and administrative control.

Access Control & Time Attendance
Access Control & Time Attendance
Dahua Security Access Control & Time Attendance systems are designed to manage and monitor entry points, track employee attendance, and enhance overall security for organizations. These systems integrate a variety of technologies, including biometric recognition, RFID, and PIN/password access methods, ensuring both security and convenience.

Accessories
Accessories
Dahua Security Network Recorder (NVR) accessories are essential components designed to enhance, support, and maintain the performance and reliability of your Dahua surveillance system. These accessories ensure seamless integration, expand system capabilities, and provide the necessary tools for installation, maintenance, and optimal operation of Dahua NVRs.

Accessories
Accessories
Access Control & Time Attendance Accessories are the supporting hardware components used with Dahua access control and attendance systems. These accessories extend, enhance, and complete the core system’s functionality by enabling secure door operation, reliable credential reading, power management, and environmental protection.

Addressable Fire Alarm System
Addressable Fire Alarm System
An Addressable Fire Alarm System is an advanced type of fire detection system that provides a higher level of precision and control compared to traditional conventional fire alarm systems. Unlike conventional systems, which only indicate the general area where an alarm is triggered, addressable fire alarm systems allow for precise identification of the specific device (such as a smoke detector, heat detector, or manual call point) that has detected smoke, heat, or a fire hazard. This makes them especially suitable for large, complex buildings or facilities with multiple zones.

AI
AI
Dahua Security Access Control & Time Attendance AI refers to the intelligent versions of Dahua’s access control and employee attendance systems that use artificial intelligence to make identity verification and attendance tracking faster, more reliable, and more secure. These AI‑enhanced products combine access control hardware with deep learning algorithms for features like face recognition, anti‑spoofing, behavioral analysis, and advanced attendance logging.

Alarms
Alarms
Dahua Alarm Systems provide intelligent, reliable, and real-time protection for residential, commercial, and industrial environments. Designed to detect security threats quickly and accurately, Dahua alarms integrate advanced sensors, smart analytics, and seamless connectivity to enhance overall safety and situational awareness.

Anti-Corrosion Cameras
Anti-Corrosion Cameras
Protect your assets with Anti-Corrosion Cameras, specially designed for extreme and challenging environments. Built with rugged materials and certified with NEMA 4X or similar anti-corrosion standards, these cameras ensure long-lasting performance in industrial, marine, and outdoor applications.

Audio
Audio
Dahua’s security audio products are designed to deliver high-quality sound capture and transmission for professional surveillance environments. Built with advanced noise reduction, wide dynamic range, and durable components, Dahua microphones, speakers, and audio modules ensure clear communication and accurate audio monitoring even in challenging conditions.

VTA8311A-4
With its 2-MP high-definition camera, the device supports video and snapshot linkage, and OSD overlay on the webpage.30 W speakers and highly sensitive microphones are included.The 2 RJ-45 10/100 Mbps self-adaptive Ethernet ports allow alarms to be reported to 2 alarm receiving centers at the same time.Supports two-way voice talk and calling through the platform…
VTA8311A
With its 2-MP high-definition camera, the device supports video and snapshot linkage, and OSD overlay on the webpage.30 W speakers and highly sensitive microphones are included.The 2 RJ-45 10/100 Mbps self-adaptive Ethernet ports allow alarms to be reported to 2 alarm receiving centers at the same time.Supports two-way voice talk and calling through the platform…
TC-LLD-5M
Liquid leakage detector-5米-TC-LLD-5M
TC-LLD-102
Liquid leakage-position detector-TC-LLD-102
CT20-100A/20mA
三相一体式电流互感器-CT20-100A/20mA
DTSD3366M-4H
三相四线电子式四回路多功能电能表-DTSD3366M-4H
PT-BATCramp-U8
绝缘电池夹-U型-PT-BATCramp-U8-最大直径8mm
ARA58-G-IT
ARA58-G-EN
ARK30C
<?php
$term = get_queried_object();
if ($term && 'product-category' === $term->taxonomy) {
// Ambil slug kategori yang aktif
$selected_category_slug = $term->slug;
$args = array(
'post_type' => 'product',
'posts_per_page' => -1,
'tax_query' => array(
array(
'taxonomy' => 'product-category',
'field' => 'slug',
'terms' => $selected_category_slug,
'operator' => 'IN',
),
),
);
// Query untuk produk
$query = new WP_Query($args);
$product_types = array();
if ($query->have_posts()) :
while ($query->have_posts()) : $query->the_post();
$product_types_terms = get_the_terms(get_the_ID(), 'product-type');
if ($product_types_terms && !is_wp_error($product_types_terms)) {
foreach ($product_types_terms as $term) {
if (!in_array($term->slug, $product_types)) {
$product_types[] = $term->slug;
}
}
}
endwhile;
$selected_product_type_slugs = $product_types;
wp_reset_postdata();
endif;
// Menampilkan hasil tipe produk yang unik
if (!empty($selected_product_type_slugs)) {
echo '<ul class="unique-product-types">';
foreach ($selected_product_type_slugs as $type) {
$term = get_term_by('slug', $type, 'product-type' );
$args = array(
'post_type' => 'product', // Or your custom post type like 'product', 'book', etc.
'posts_per_page' => -1, // To retrieve all matching posts, or a specific number
'tax_query' => array(
array(
'taxonomy' => 'product-type', // Replace with your taxonomy slug (e.g., 'category', 'post_tag', or custom taxonomy)
'field' => 'slug', // Specify that we are querying by the term slug
'terms' => $type, // Replace with the actual slug of the term you want to filter by
),
),
);
echo $term->name;
echo "<br/>";
$query = new WP_Query( $args );
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
// Display post content here
echo the_title();
echo the_content();
}
wp_reset_postdata(); // Restore original post data
}
echo '<li>' . esc_html($type) . '</li>';
}
echo '</ul>';
}
}
?>

