Vom Fachmann für dein Motorrad
Ducati Benzinfilter – 350, 400, 600, 750, 900 SS, SL, Paso, 750 Sport, 900 Monster…
DUC Ducati 350 SS (350 ccm, 1991 – 1992)
DUC Ducati 400 SS (400 ccm, 1991 – 1999)
DUC Ducati 600 Pantah SL (600 ccm, 1981 – 1984)
DUC Ducati 600 SS (600 ccm, 1994 – 1998)
DUC Ducati 650 Pantah SL (650 ccm, 1984 – 1985)
DUC Ducati 750 Paso (750 ccm, 1986 – 1990)
DUC Ducati 750 Sport (750 ccm, 1988 – 1989)
DUC Ducati 750 SS (750 ccm, 1993 – 1997)
DUC Ducati 750 SS Carenata (750 ccm, 1994 – 1998)
DUC Ducati 750 SS Nuda (750 ccm, 1993 – 1996)
DUC Ducati 888 Biposto (888 ccm, 1993 – 1993)
DUC Ducati 888 SP 3 (888 ccm, 1991 – 1991)
DUC Ducati 900 Monster (904 ccm, 1993 – 1999)
DUC Ducati 900 SL (900 ccm, 1991 – 1991)
DUC Ducati 900 SL (904 ccm, 1992 – 1997)
DUC Ducati 900 SS (900 ccm, 1991 – 1991)
DUC Ducati 900 SS (904 ccm, 1989 – 1990)
DUC Ducati 900 SS (904 ccm, 1993 – 1996)
DUC Ducati 906 Paso (904 ccm, 1989 – 1992)
9,90€
Vorrätig
Passt nur an wenigen 900 Monster Modellen! Alternative wäre hierzu: 42510023A!
DUC Ducati 350 SS (350 ccm, 1991 – 1992)
DUC Ducati 400 SS (400 ccm, 1991 – 1999)
DUC Ducati 600 Pantah SL (600 ccm, 1981 – 1984)
DUC Ducati 600 SS (600 ccm, 1994 – 1998)
DUC Ducati 650 Pantah SL (650 ccm, 1984 – 1985)
DUC Ducati 750 Paso (750 ccm, 1986 – 1990)
DUC Ducati 750 Sport (750 ccm, 1988 – 1989)
DUC Ducati 750 SS (750 ccm, 1993 – 1997)
DUC Ducati 750 SS Carenata (750 ccm, 1994 – 1998)
DUC Ducati 750 SS Nuda (750 ccm, 1993 – 1996)
DUC Ducati 888 Biposto (888 ccm, 1993 – 1993)
DUC Ducati 888 SP 3 (888 ccm, 1991 – 1991)
DUC Ducati 900 Monster (904 ccm, 1993 – 1999)
DUC Ducati 900 SL (900 ccm, 1991 – 1991)
DUC Ducati 900 SL (904 ccm, 1992 – 1997)
DUC Ducati 900 SS (900 ccm, 1991 – 1991)
DUC Ducati 900 SS (904 ccm, 1989 – 1990)
DUC Ducati 900 SS (904 ccm, 1993 – 1996)
DUC Ducati 906 Paso (904 ccm, 1989 – 1992)
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; } ?>
Ducati Benzinfilter – 750, 900 SS, Monster i.e., 748, 851, 888, 916, 996, 998, 1098, 1198, S4, S4R..
CAG Cagiva 900 Elefant AC (900 ccm, 1993 - 1997) CAG Cagiva 900 Elefant GT…
25,14€
<?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; } ?>
Ducati Schlauchschelle 40-60 mm Ansauggummi… – 400-1000 SS, Monster, Scrambler, Multistrada…
DUC Ducati 1000 DS Multistrada (1000 ccm, 2003 - 2006) DUC Ducati 1000 DS Multistrada…
3,30€
<?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; } ?>
Ducati Zündkerze Champion RA4HC – 600, 800 SS, 620, 800 Monster, Sport, ST2, 907 Paso…
DUC Ducati 600 SS (600 ccm, 1994 - 1998) DUC Ducati 620 Monster (620 ccm,…
8,60€
<?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; } ?>
Ducati Benzinfilter – 400, 600, 750, 900 Monster…
DUC Ducati 400 Monster (400 ccm, 1994 - 1997) DUC Ducati 600 Monster (24 KW)…
9,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; } } } ?>

Ducati Benzinfilter – 750, 900 SS, Monster i.e., 748, 851, 888, 916, 996, 998, 1098, 1198, S4, S4R..
CAG Cagiva 900 Elefant AC (900 ccm, 1993 - 1997) CAG Cagiva 900 Elefant GT...
25,14€

Ducati Schlauchschelle 40-60 mm Ansauggummi… – 400-1000 SS, Monster, Scrambler, Multistrada…
DUC Ducati 1000 DS Multistrada (1000 ccm, 2003 - 2006) DUC Ducati 1000 DS Multistrada...
3,30€

Ducati Zündkerze Champion RA4HC – 600, 800 SS, 620, 800 Monster, Sport, ST2, 907 Paso…
DUC Ducati 600 SS (600 ccm, 1994 - 1998) DUC Ducati 620 Monster (620 ccm,...
8,60€

Ducati Benzinfilter – 400, 600, 750, 900 Monster…
DUC Ducati 400 Monster (400 ccm, 1994 - 1997) DUC Ducati 600 Monster (24 KW)...
9,90€
Bewertungen
Es gibt noch keine Bewertungen.