Vom Fachmann für dein Motorrad
Brembo Bremsscheibe 320mm Serie Oro
BMW BMW 1100 R1100 RT (1100 ccm, 1996 – 2001)
BMW BMW 1100 R1100 S (1100 ccm, 1998 – 2005)
BMW BMW 1150 R1150 R (1150 ccm, 2001 – 2004)
BMW BMW 1150 R1150 RS (1150 ccm, 2001 – 2005)
BMW BMW 1150 R1150 RT (1150 ccm, 2002 – 2005)
BMW BMW 1200 HP2 Megamoto (1200 ccm, 2007 – 2007)
BMW BMW 1200 K1200 GT (1200 ccm, 2003 – 2004)
BMW BMW 1200 K1200 GT (1200 ccm, 2003 – 2004)
BMW BMW 1200 K1200 GT (1200 ccm, 2004 – 2008)
BMW BMW 1200 K1200 LT (1200 ccm, 2004 – 2009)
BMW BMW 1200 K1200 R (1200 ccm, 2005 – 2007)
BMW BMW 1200 K1200 R (1200 ccm, 2007 – 2008)
BMW BMW 1200 K1200 RS (1200 ccm, 2001 – 2005)
BMW BMW 1200 K1200 S (1200 ccm, 2005 – 2008)
BMW BMW 1200 R1200 R (1200 ccm, 2007 – 2013)
BMW BMW 1200 R1200 RT (1200 ccm, 2005 – 2014)
BMW BMW 1200 R1200 S (1200 ccm, 2006 – 2008)
BMW BMW 1200 R1200 ST (1200 ccm, 2005 – 2008)
BMW BMW 800 F 800 S (800 ccm, 2006 – 2010)
BMW BMW 850 R 850 RT (850 ccm, 1996 – 2005)
BMW BMW F 800 ST (800 ccm, 2006 – 2012)
BMW BMW R 850 RT (850 ccm, 1998 – 2006)
114,00€
Passende Floater 105577612 —————– Brembo Bremsscheibe Serie Oro, fest.
Außendurchmesser: 320 mm
Zentrierungsdurchmesser: 181 mm
Abstand zwischen Befestigungsbohrungen: 203 mm
Durchmesser der Befestigungsbohrungen: 14 mm
Scheibenstärke: 5 mm
320mm, innen 181mm, Lochkreis 203mm, 5-Loch-Aufnahme, Stärke 5mm (z.B. BMW R-/K-, vorn)
BMW BMW 1100 R1100 RT (1100 ccm, 1996 – 2001)
BMW BMW 1100 R1100 S (1100 ccm, 1998 – 2005)
BMW BMW 1150 R1150 R (1150 ccm, 2001 – 2004)
BMW BMW 1150 R1150 RS (1150 ccm, 2001 – 2005)
BMW BMW 1150 R1150 RT (1150 ccm, 2002 – 2005)
BMW BMW 1200 HP2 Megamoto (1200 ccm, 2007 – 2007)
BMW BMW 1200 K1200 GT (1200 ccm, 2003 – 2004)
BMW BMW 1200 K1200 GT (1200 ccm, 2003 – 2004)
BMW BMW 1200 K1200 GT (1200 ccm, 2004 – 2008)
BMW BMW 1200 K1200 LT (1200 ccm, 2004 – 2009)
BMW BMW 1200 K1200 R (1200 ccm, 2005 – 2007)
BMW BMW 1200 K1200 R (1200 ccm, 2007 – 2008)
BMW BMW 1200 K1200 RS (1200 ccm, 2001 – 2005)
BMW BMW 1200 K1200 S (1200 ccm, 2005 – 2008)
BMW BMW 1200 R1200 R (1200 ccm, 2007 – 2013)
BMW BMW 1200 R1200 RT (1200 ccm, 2005 – 2014)
BMW BMW 1200 R1200 S (1200 ccm, 2006 – 2008)
BMW BMW 1200 R1200 ST (1200 ccm, 2005 – 2008)
BMW BMW 800 F 800 S (800 ccm, 2006 – 2010)
BMW BMW 850 R 850 RT (850 ccm, 1996 – 2005)
BMW BMW F 800 ST (800 ccm, 2006 – 2012)
BMW BMW R 850 RT (850 ccm, 1998 – 2006)
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; } ?>
Anschlagpuffer YSS 16X15MM
Anschlagpuffer YSS Federbeine 16x15 mm
6,16€
<?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; } ?>
Vibrationsdämpfer Gabelbrücke Ducati 696 – 1200 Monster Diavel Scrambler Hypermotard Stretfighter
Der Vibrationsdämpfer für Gabelbrücken ist maßgeschneidert für Ducati-Modelle von 696 bis 1200, darunter Monster, Diavel,…
12,70€
<?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 Lager Antriebsmitnehmer – SS, Monster, 748-1198, Hypermotard, Panigale, Multistrada
Das Ducati Lager Antriebsmitnehmer ist ein hochwertiges Ersatzteil, das eine zuverlässige Leistung in verschiedenen Ducati-Modellen…
18,40€
<?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 Simmerring 35x47x6 Vorderrad – 749-1198, Panigale, Hypermotard, Monster, Diavel, Multistrada
Der Ducati Simmerring mit den Abmessungen 35x47x6 für das Vorderrad ist ein präzises Ersatzteil für…
4,70€
<?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; } } } ?>

Vibrationsdämpfer Gabelbrücke Ducati 696 – 1200 Monster Diavel Scrambler Hypermotard Stretfighter
Der Vibrationsdämpfer für Gabelbrücken ist maßgeschneidert für Ducati-Modelle von 696 bis 1200, darunter Monster, Diavel,...
12,70€

Ducati Lager Antriebsmitnehmer – SS, Monster, 748-1198, Hypermotard, Panigale, Multistrada
Das Ducati Lager Antriebsmitnehmer ist ein hochwertiges Ersatzteil, das eine zuverlässige Leistung in verschiedenen Ducati-Modellen...
18,40€

Ducati Simmerring 35x47x6 Vorderrad – 749-1198, Panigale, Hypermotard, Monster, Diavel, Multistrada
Der Ducati Simmerring mit den Abmessungen 35x47x6 für das Vorderrad ist ein präzises Ersatzteil für...
4,70€
Bewertungen
Es gibt noch keine Bewertungen.