Vom Fachmann für dein Motorrad
Zündkerze für 2 Ventil Ducati Modelle luftgekühlt
Monster 400 600 620 750 695 800 1000, 696, 796, 1100 Hypermotard 796, 1100 Multistrada 1000 / 1100 SS i.e. 620 750 800 900 1000 S 600 750 900 ST2
8,50€
Vorrätig
- Hersteller: NGK
- Artikelnummer: 4339
- Produktart: Zündkerze
- Bauart: Standard-Zündkerze für luftgekühlte Ducati Zweiventil-Motoren
- Gewindemaß: M12 x 1,25
- Schlüsselweite: 18 mm
- Elektrodenabstand: ca. 0,7–0,8 mm (laut Hersteller)
- Wärmeleitwert: Typisch für Ducati-Modelle mit Luftkühlung (je nach Modell abweichend)
Die NGK Zündkerze mit der Artikelnummer 4339 ist ein hochwertiges Ersatzteil für zahlreiche luftgekühlte Ducati Modelle mit Zweiventil-Technik. Sie sorgt für eine zuverlässige Zündung und unterstützt die optimale Motorleistung.
Vorteile auf einen Blick
Diese Zündkerze bietet mehrere Vorteile für den Einsatz in luftgekühlten Ducati Zweiventil-Motoren.
- Zuverlässige Zündleistung auch bei hohen Temperaturen
- Lange Lebensdauer durch hochwertige Materialien
- Einfache Montage dank passgenauer Bauform
- Korrosionsbeständige Verarbeitung für lange Haltbarkeit
Technische Daten
Zentrale Merkmale der NGK Zündkerze:
- M12 x 1,25 Gewindegröße
- Schlüsselweite: 18 mm (Sechskant)
- Elektrodenabstand ca. 0,7–0,8 mm (modellabhängig)
- Bauform speziell für luftgekühlte Ducati Zweiventil-Motoren entwickelt
Einsatzbereiche
Die Zündkerze eignet sich besonders für folgende Anwendungen:
- Ducati Motorräder mit luftgekühltem Zweiventil-Motor (z. B. Monster, Supersport, Multistrada je nach Baujahr und Modell)
- Ersatzteilbedarf im privaten und professionellen Bereich
- Anwendende aus Werkstatt, Service und Instandhaltung von klassischen Ducati Modellen
- Saisonale Wartung und regelmäßiger Austausch zur Sicherstellung der Motorleistung
Lieferumfang
- 1x NGK Zündkerze (Modell laut Artikelnummer)
- Verpackungseinheit: Einzelstück (weitere Stückzahlen je nach Bedarf separat erhältlich)
- Hinweis: Kompatibilität bitte anhand der Fahrzeugdaten prüfen; technische Ausführung kann je nach Modelljahr variieren.
FAQ
Für welche Ducati Modelle ist diese Zündkerze geeignet?
Die Zündkerze passt zu vielen luftgekühlten Ducati Modellen mit Zweiventil-Technik. Die genaue Kompatibilität ist modell- und baujahrabhängig.
Muss der Elektrodenabstand vor dem Einbau geprüft werden?
Ja, es wird empfohlen, den Elektrodenabstand vor dem Einbau zu kontrollieren und gegebenenfalls anzupassen.
Können auch andere Marken verwendet werden?
Es können auch andere Marken verwendet werden, sofern sie die gleichen technischen Spezifikationen erfüllen.
Muss die Zündkerze regelmäßig gewechselt werden?
Ein regelmäßiger Wechsel wird empfohlen, um eine optimale Motorleistung sicherzustellen. Die Intervalle richten sich nach den Angaben des Fahrzeugherstellers.
Sind spezielle Werkzeuge zum Einbau erforderlich?
Für den Einbau wird ein handelsüblicher Kerzenschlüssel mit Schlüsselweite 18 mm benötigt.
Alle Angaben ohne Gewähr.
Monster 400 600 620 750 695 800 1000, 696, 796, 1100 Hypermotard 796, 1100 Multistrada 1000 / 1100 SS i.e. 620 750 800 900 1000 S 600 750 900 ST2
Westerbachstraße 32
61476 Kronberg im Taunus
Baden-Württemberg Deutschland
info@ngk-e.de
Du musst angemeldet sein, um eine Bewertung abgeben zu können.
Verwandte Produkte

<?php // Obtener el ID del producto actual $product_id = get_the_ID(); // Obtener todas las imágenes de la galería del producto $product_gallery = get_post_meta( $product_id, '_product_image_gallery', true ); // Obtener el enlace del producto $product_link = get_permalink( $product_id ); // Si la galería no está vacía, obtener la primera imagen de la galería if ( $product_gallery ) { $gallery_images = explode( ',', $product_gallery ); $first_image_id = $gallery_images[0]; $image_url = wp_get_attachment_image_src( $first_image_id, 'full' ); } else { // Si no hay imágenes en la galería, obtener la imagen principal del producto $image_id = get_post_thumbnail_id( $product_id ); $image_url = wp_get_attachment_image_src( $image_id, 'full' ); } // Mostrar la imagen con enlace al producto if ( $image_url ) { $image_width = $image_url[1]; $image_height = $image_url[2]; echo '<img src="' . esc_url( $image_url[0] ) . '" alt="' . esc_attr( get_the_title() ) . '" width="' . esc_attr( $image_width ) . '" height="' . esc_attr( $image_height ) . '" loading="lazy" aria-hidden="true">'; } ?><?php global $product; if (!$product->is_in_stock()) { $showText = '<span class="out">Out of stock</span>'; echo $showText; } if ($product->is_on_sale() && $product->get_type() !== 'grouped'){ if ( $product->get_type() == 'variable' ) { $vars = $product->get_available_variations(); $var_cero = $vars[0]['variation_id']; $variable_product = wc_get_product($var_cero); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent_max = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent_max = 0; } $cont_percent = 0; foreach ($vars as $varID) { $variable_product = wc_get_product($varID['variation_id']); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent = 0; } if($percent_max != $percent){ if($percent_max > $percent){ $percent_max = $percent_max; } else { $percent_max = $percent; } } else { $cont_percent++; } #echo $regular_price." - ".$sale_price."%".$percent_max."<br>"; } if($cont_percent == count($vars)){ $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent_max. '%</span>'; } else { $showText = '<span class="onsale">'. __('Up to -', 'woocommerce' ). $percent_max. '%</span>'; } } else { $regular_price = $product->get_regular_price(); $sale_price = $product->get_sale_price(); $percent = round((($regular_price - $sale_price) / $regular_price) * 100); $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent . '%</span>'; } echo $showText; } ?>2x Zündkerze für Ducati 851 888 748 916 996 ST4 S4R NGK Iridium #1
2x Zündkerze NGK DCPR9EIX Iridium Ducati 851 888 Ducati 748 916 996 Ducati ST4 Ducati…
29,90€
<?php if (!function_exists('show_quantity')) { function show_quantity() { global $product; // Verificar si el producto no es variable, está en stock y no tiene precio vacío if ($product && !$product->is_type('variable') && !$product->is_type('grouped') && $product->is_in_stock() && !empty($product->get_price())) { return true; } else { return false; } } } ?>
<?php // Obtener el ID del producto actual $product_id = get_the_ID(); // Obtener todas las imágenes de la galería del producto $product_gallery = get_post_meta( $product_id, '_product_image_gallery', true ); // Obtener el enlace del producto $product_link = get_permalink( $product_id ); // Si la galería no está vacía, obtener la primera imagen de la galería if ( $product_gallery ) { $gallery_images = explode( ',', $product_gallery ); $first_image_id = $gallery_images[0]; $image_url = wp_get_attachment_image_src( $first_image_id, 'full' ); } else { // Si no hay imágenes en la galería, obtener la imagen principal del producto $image_id = get_post_thumbnail_id( $product_id ); $image_url = wp_get_attachment_image_src( $image_id, 'full' ); } // Mostrar la imagen con enlace al producto if ( $image_url ) { $image_width = $image_url[1]; $image_height = $image_url[2]; echo '<img src="' . esc_url( $image_url[0] ) . '" alt="' . esc_attr( get_the_title() ) . '" width="' . esc_attr( $image_width ) . '" height="' . esc_attr( $image_height ) . '" loading="lazy" aria-hidden="true">'; } ?><?php global $product; if (!$product->is_in_stock()) { $showText = '<span class="out">Out of stock</span>'; echo $showText; } if ($product->is_on_sale() && $product->get_type() !== 'grouped'){ if ( $product->get_type() == 'variable' ) { $vars = $product->get_available_variations(); $var_cero = $vars[0]['variation_id']; $variable_product = wc_get_product($var_cero); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent_max = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent_max = 0; } $cont_percent = 0; foreach ($vars as $varID) { $variable_product = wc_get_product($varID['variation_id']); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent = 0; } if($percent_max != $percent){ if($percent_max > $percent){ $percent_max = $percent_max; } else { $percent_max = $percent; } } else { $cont_percent++; } #echo $regular_price." - ".$sale_price."%".$percent_max."<br>"; } if($cont_percent == count($vars)){ $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent_max. '%</span>'; } else { $showText = '<span class="onsale">'. __('Up to -', 'woocommerce' ). $percent_max. '%</span>'; } } else { $regular_price = $product->get_regular_price(); $sale_price = $product->get_sale_price(); $percent = round((($regular_price - $sale_price) / $regular_price) * 100); $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent . '%</span>'; } echo $showText; } ?>Zündkerzen Set NGK für Ducati Monster SS Hpermotard Iridium
Hersteller: NGK Artikelnummer: DCPR8EIX_2 Produktart: Zündkerzen-Set (Iridium) Technologie: Iridium-Elektrode für optimierte Zündleistung Kompatibilität: Ducati Monster,…
38,90€
<?php if (!function_exists('show_quantity')) { function show_quantity() { global $product; // Verificar si el producto no es variable, está en stock y no tiene precio vacío if ($product && !$product->is_type('variable') && !$product->is_type('grouped') && $product->is_in_stock() && !empty($product->get_price())) { return true; } else { return false; } } } ?>
<?php // Obtener el ID del producto actual $product_id = get_the_ID(); // Obtener todas las imágenes de la galería del producto $product_gallery = get_post_meta( $product_id, '_product_image_gallery', true ); // Obtener el enlace del producto $product_link = get_permalink( $product_id ); // Si la galería no está vacía, obtener la primera imagen de la galería if ( $product_gallery ) { $gallery_images = explode( ',', $product_gallery ); $first_image_id = $gallery_images[0]; $image_url = wp_get_attachment_image_src( $first_image_id, 'full' ); } else { // Si no hay imágenes en la galería, obtener la imagen principal del producto $image_id = get_post_thumbnail_id( $product_id ); $image_url = wp_get_attachment_image_src( $image_id, 'full' ); } // Mostrar la imagen con enlace al producto if ( $image_url ) { $image_width = $image_url[1]; $image_height = $image_url[2]; echo '<img src="' . esc_url( $image_url[0] ) . '" alt="' . esc_attr( get_the_title() ) . '" width="' . esc_attr( $image_width ) . '" height="' . esc_attr( $image_height ) . '" loading="lazy" aria-hidden="true">'; } ?><?php global $product; if (!$product->is_in_stock()) { $showText = '<span class="out">Out of stock</span>'; echo $showText; } if ($product->is_on_sale() && $product->get_type() !== 'grouped'){ if ( $product->get_type() == 'variable' ) { $vars = $product->get_available_variations(); $var_cero = $vars[0]['variation_id']; $variable_product = wc_get_product($var_cero); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent_max = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent_max = 0; } $cont_percent = 0; foreach ($vars as $varID) { $variable_product = wc_get_product($varID['variation_id']); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent = 0; } if($percent_max != $percent){ if($percent_max > $percent){ $percent_max = $percent_max; } else { $percent_max = $percent; } } else { $cont_percent++; } #echo $regular_price." - ".$sale_price."%".$percent_max."<br>"; } if($cont_percent == count($vars)){ $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent_max. '%</span>'; } else { $showText = '<span class="onsale">'. __('Up to -', 'woocommerce' ). $percent_max. '%</span>'; } } else { $regular_price = $product->get_regular_price(); $sale_price = $product->get_sale_price(); $percent = round((($regular_price - $sale_price) / $regular_price) * 100); $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent . '%</span>'; } echo $showText; } ?>Zündkerze NGK für Moto Guzzi V85 / V9
Hersteller: NGK Artikelnummer: 91360 Produktart: Zündkerze Passend für: Moto Guzzi V85, Moto Guzzi V9 (modellabhängig)…
27,90€
<?php if (!function_exists('show_quantity')) { function show_quantity() { global $product; // Verificar si el producto no es variable, está en stock y no tiene precio vacío if ($product && !$product->is_type('variable') && !$product->is_type('grouped') && $product->is_in_stock() && !empty($product->get_price())) { return true; } else { return false; } } } ?>
<?php // Obtener el ID del producto actual $product_id = get_the_ID(); // Obtener todas las imágenes de la galería del producto $product_gallery = get_post_meta( $product_id, '_product_image_gallery', true ); // Obtener el enlace del producto $product_link = get_permalink( $product_id ); // Si la galería no está vacía, obtener la primera imagen de la galería if ( $product_gallery ) { $gallery_images = explode( ',', $product_gallery ); $first_image_id = $gallery_images[0]; $image_url = wp_get_attachment_image_src( $first_image_id, 'full' ); } else { // Si no hay imágenes en la galería, obtener la imagen principal del producto $image_id = get_post_thumbnail_id( $product_id ); $image_url = wp_get_attachment_image_src( $image_id, 'full' ); } // Mostrar la imagen con enlace al producto if ( $image_url ) { $image_width = $image_url[1]; $image_height = $image_url[2]; echo '<img src="' . esc_url( $image_url[0] ) . '" alt="' . esc_attr( get_the_title() ) . '" width="' . esc_attr( $image_width ) . '" height="' . esc_attr( $image_height ) . '" loading="lazy" aria-hidden="true">'; } ?><?php global $product; if (!$product->is_in_stock()) { $showText = '<span class="out">Out of stock</span>'; echo $showText; } if ($product->is_on_sale() && $product->get_type() !== 'grouped'){ if ( $product->get_type() == 'variable' ) { $vars = $product->get_available_variations(); $var_cero = $vars[0]['variation_id']; $variable_product = wc_get_product($var_cero); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent_max = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent_max = 0; } $cont_percent = 0; foreach ($vars as $varID) { $variable_product = wc_get_product($varID['variation_id']); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent = 0; } if($percent_max != $percent){ if($percent_max > $percent){ $percent_max = $percent_max; } else { $percent_max = $percent; } } else { $cont_percent++; } #echo $regular_price." - ".$sale_price."%".$percent_max."<br>"; } if($cont_percent == count($vars)){ $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent_max. '%</span>'; } else { $showText = '<span class="onsale">'. __('Up to -', 'woocommerce' ). $percent_max. '%</span>'; } } else { $regular_price = $product->get_regular_price(); $sale_price = $product->get_sale_price(); $percent = round((($regular_price - $sale_price) / $regular_price) * 100); $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent . '%</span>'; } echo $showText; } ?>Zündkerze für Ducati Panigale V4 Streetfighter V4 Multistrada V4 NGK
Zündkerze NGK LMDR10A-JS passend für Ducati Panigale V4 / V4S / V4R Streetfighter V4 /…
32,90€
<?php if (!function_exists('show_quantity')) { function show_quantity() { global $product; // Verificar si el producto no es variable, está en stock y no tiene precio vacío if ($product && !$product->is_type('variable') && !$product->is_type('grouped') && $product->is_in_stock() && !empty($product->get_price())) { return true; } else { return false; } } } ?>

2x Zündkerze für Ducati 851 888 748 916 996 ST4 S4R NGK Iridium #1
2x Zündkerze NGK DCPR9EIX Iridium Ducati 851 888 Ducati 748 916 996 Ducati ST4 Ducati...
29,90€

Zündkerzen Set NGK für Ducati Monster SS Hpermotard Iridium
Hersteller: NGK Artikelnummer: DCPR8EIX_2 Produktart: Zündkerzen-Set (Iridium) Technologie: Iridium-Elektrode für optimierte Zündleistung Kompatibilität: Ducati Monster,...
38,90€

Zündkerze NGK für Moto Guzzi V85 / V9
Hersteller: NGK Artikelnummer: 91360 Produktart: Zündkerze Passend für: Moto Guzzi V85, Moto Guzzi V9 (modellabhängig)...
27,90€

Zündkerze für Ducati Panigale V4 Streetfighter V4 Multistrada V4 NGK
Zündkerze NGK LMDR10A-JS passend für Ducati Panigale V4 / V4S / V4R Streetfighter V4 /...
32,90€


Bewertungen
Es gibt noch keine Bewertungen.