4G Series
Dahua 4G Series cameras leverage cellular networks for remote surveillance, enabling monitoring in locations without wired internet access.
HFW1239DT-4G-ST-IL-EU-B
HFW3441DG-AS-4G-EAU-B
Wi-Fi Series
Dahua Wi-Fi Series devices deliver wireless connectivity for easy installation, remote monitoring, and flexible placement without sacrificing image quality.
T2A-PV
IPC-WL46A
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.

HFW1239DT-4G-ST-IL-EU-B
HFW3441DG-AS-4G-EAU-B
T2A-PV
IPC-WL46A
<?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>';
}
}
?>


