KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (2025)

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (1)

Kohler authorized dealer

SKU: K-728-K-NA

Ask a Professional

Have a question about KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE? We are here to help - ask us anything!

Have a technical question? Delivery question or any questions at all, use the chat box to the left and ask away!

If you prefer to speak to us over the phone, call us! 800-634-0410

We do our best to provide accurate answers here, but sometimes we may lack details or context and mistakes can happen. For the most precise information, please call us directly at 1-800-634-0410. We're always happy to help!

').insertAfter('#questionInput'); } const remaining = max - current; const counterClass = remaining < 0 ? 'char-counter-exceeded' : 'char-counter-normal'; $('#charCounter').html(`${current}/${max}`).removeClass().addClass(`char-counter ${counterClass}`); }, hideCharacterCount: function() { $('#charCounter').remove(); }, handleAskButtonClick: function() { var question = $('#questionInput').val().trim(); if (!question) return; // Execute reCAPTCHA verification before sending the question this.executeRecaptcha(question); }, executeRecaptcha: function(question) { // Get recaptcha token grecaptcha.ready(function() { grecaptcha.execute('6Ldpoh8rAAAAAJUO4V0V8mt3uOuFdZ6JunIQb045', {action: 'submit'}) .then(function(token) { // Add token to hidden field $('#recaptchaToken').val(token); // Proceed with asking the question AskProfessional.processQuestion(question, token); }); }); }, processQuestion: function(question, recaptchaToken) { // Add user message to chat this.addMessageToChat(question, true); // Clear input $('#questionInput').val(''); // Reset validation state after clearing input this.validateInput(); // Add typing indicator immediately var typingIndicator = $('

'); $('#chatHistory').append(typingIndicator); this.scrollChatToBottom(); // Gather comprehensive product information var productInfo = this.gatherProductInfo(); // Send request to server with recaptcha token $.ajax({ url: 'askapro.php', type: 'POST', dataType: 'json', data: { question: question, product_id: $('#productId').val(), product_info: JSON.stringify(productInfo), sessid: $('#sessid').val(), recaptcha_token: recaptchaToken }, success: function(response) { // Remove typing indicator $('#typingIndicator').remove(); if (response.success && response.answer) { this.addMessageToChat(response.answer, false); } else { this.addMessageToChat(response.error || "Sorry, I couldn't process your question. Please try again later.", false); } }.bind(this), error: function() { // Remove typing indicator $('#typingIndicator').remove(); this.addMessageToChat("Sorry, there was an error connecting to the service. Please try again later.", false); }.bind(this) }); }, // Gather all product information from the page gatherProductInfo: function() { var productInfo = { // Basic product details product_id: $('#productId').val() || $('input[name="productid"]').val(), product_title: $('.product-title h1').text().trim(), manufacturer: $('.manuf-title img').attr('alt') || $('.manuf-title').text().trim(), link: window.location.origin + '/product.php?productid=' + ($('#productId').val() || $('input[name="productid"]').val()), // Price information price: this.getPriceInfo(), // Stock information stock: this.getStockInfo(), // Product options options: this.getMainProductOptions(), // Delivery information delivery: this.getDeliveryInfo(), // Bundle information bundles: this.getBundleInfo(), // Additional information additional: this.getAdditionalInfo(), // Membership information membership: this.getMembershipInfo() }; return productInfo; }, getPriceInfo: function() { return { current: this.parsePrice('#product_price') || this.parsePrice('.product_price'), list: this.parsePrice('#product_list_price'), save_percent: parseInt($('#save_percent').text()) || 0, add_to_cart_discount_percent: parseFloat($('.add2c_dsc_pct').text()) || 0, member_price: this.parsePrice('#product_price') - this.parsePrice('#mi-member-price'), free_shipping: $('.shiping-info').text().includes('FREE') || false, currency: $('.currency').first().text().trim().replace(/[0-9,.]/g, '').trim() || '$' }; }, parsePrice: function(selector) { var priceText = $(selector).first().text().trim(); if (!priceText) return 0; return parseFloat(priceText.replace(/[^0-9.]/g, '')) || 0; }, getStockInfo: function() { return { quantity: parseInt($('#product_sum_stock').text()) || 0, status: $('.has-stock-lbl.stock').length && $('.has-stock-lbl.stock').css('display') !== 'none' ? 'In Stock' : $('.low-stock-lbl').length && $('.low-stock-lbl').css('display') !== 'none' ? 'Low Stock' : 'Unknown', in_stock: $('.has-stock-lbl.stock').length && $('.has-stock-lbl.stock').css('display') !== 'none', added_to_cart_today: parseInt($('.get-it-fast:visible span').text()) || 0 }; }, getMainProductOptions: function() { var self = this; var optionsData = {}; // Process only main product option selectors (not bundle options) $('.product-options-default-holder .row, .product-options-selector .swatches-row').each(function() { var categoryName = $(this).find('label').text().trim(); if (!categoryName) return; // Skip if this is a matching/bundle row if ($(this).hasClass('matching-row') || $(this).closest('.matching-info-row').length > 0) { return; } var categoryId = ''; // Try to find the category ID from the select var select = $(this).find('select'); if (select.length) { categoryId = select.attr('id').replace('po', ''); } var optionData = { name: categoryName, id: categoryId, selected: {}, available: [] }; // Find selected option var selectedSwatch = $(this).find('.product-swatch.selected'); if (selectedSwatch.length) { var selectedText = selectedSwatch.find('span').text().trim(); var optionId = selectedSwatch.data('opt_id'); optionData.selected = { id: optionId, name: selectedText, display_value: self.getCleanOptionDisplayValue(selectedText) }; } else if (select.length) { // Try to get from dropdown var selectedOption = select.find('option:selected'); if (selectedOption.length) { optionData.selected = { id: selectedOption.val(), name: selectedOption.text(), display_value: self.getCleanOptionDisplayValue(selectedOption.text()) }; } } // Get all available options $(this).find('.product-swatch').each(function() { var optionText = $(this).find('span').text().trim(); var optId = $(this).data('opt_id'); optionData.available.push({ id: optId, name: optionText, display_value: self.getCleanOptionDisplayValue(optionText), is_selected: $(this).hasClass('selected') }); }); // If no options found from swatches, try select options if (optionData.available.length === 0 && select.length) { select.find('option').each(function() { optionData.available.push({ id: $(this).val(), name: $(this).text(), display_value: self.getCleanOptionDisplayValue($(this).text()), is_selected: $(this).is(':selected') }); }); } optionsData[categoryName] = optionData; }); return optionsData; }, getCleanOptionDisplayValue: function(text) { // Extract just the display part from options like "Chrome: SHEN-2636360-01" var parts = text.split(':'); if (parts.length > 1) { return parts[0].trim(); } return text; }, getDeliveryInfo: function() { return { order_date: $('#now-date .date-text').text(), dispatch_date: $('#after-3days .date-text').text(), estimated_delivery: $('#delivery-date .date-text').text(), free_shipping: $('.shiping-info').text().includes('FREE') || false }; }, getBundleInfo: function() { var self = this; var bundleData = { selected: [], available: [] }; // Look for all bundle options in the main matching row $('.matching-row .product-swatch').each(function() { var bundleId = $(this).data('opt_id'); if (!bundleId || $(this).attr('id') === 'ps_mpsc12_0') return; // Skip "No Thanks" option var bundleName = $(this).find('span').text().trim(); var bundlePriceElem = $('#mp_price_' + bundleId); var bundlePrice = bundlePriceElem.length ? self.parsePrice('#mp_price_' + bundleId) : 0; var isSelected = $(this).find('.sel-cb').is(':visible') || $(this).hasClass('selected'); var bundleInfo = { id: bundleId, name: bundleName, price: bundlePrice, options: self.getBundleOptions(bundleId), is_selected: isSelected, link: window.location.origin + '/product.php?productid='+bundleId }; if (isSelected) { bundleData.selected.push(bundleInfo); } bundleData.available.push(bundleInfo); }); return bundleData; }, getBundleOptions: function(bundleId) { var self = this; var optionsData = {}; // Find the specific bundle options container $('#minforow_mpsc12_' + bundleId + ' .swatches-row-nojs').each(function() { var categoryName = $(this).find('label').text().trim(); if (!categoryName) return; var categoryId = ''; var select = $(this).find('select'); if (select.length) { categoryId = select.attr('id').replace('po', ''); } var optionData = { name: categoryName, id: categoryId, selected: {}, available: [] }; // Find selected option var selectedSwatch = $(this).find('.product-swatch.selected'); if (selectedSwatch.length) { var selectedText = selectedSwatch.find('span').text().trim(); var optionId = selectedSwatch.data('opt_id'); optionData.selected = { id: optionId, name: selectedText, display_value: self.getCleanOptionDisplayValue(selectedText) }; } else if (select.length) { // Try to get from dropdown var selectedOption = select.find('option:selected'); if (selectedOption.length) { optionData.selected = { id: selectedOption.val(), name: selectedOption.text(), display_value: self.getCleanOptionDisplayValue(selectedOption.text()) }; } } // Get all available options $(this).find('.product-swatch').each(function() { var optionText = $(this).find('span').text().trim(); var optId = $(this).data('opt_id'); optionData.available.push({ id: optId, name: optionText, display_value: self.getCleanOptionDisplayValue(optionText), is_selected: $(this).hasClass('selected') }); }); // If no options found from swatches, try select options if (optionData.available.length === 0 && select.length) { select.find('option').each(function() { optionData.available.push({ id: $(this).val(), name: $(this).text(), display_value: self.getCleanOptionDisplayValue($(this).text()), is_selected: $(this).is(':selected') }); }); } optionsData[categoryName] = optionData; }); return optionsData; }, getAdditionalInfo: function() { // Extract product SKU and model number return { guarantee: $('.info-guarantee-against__title').text().trim(), return_policy: "20% restocking fee. Returns not accepted after 30 days from receipt.", reviews: $('.review-stars svg').length || 0, product_categories: this.getProductCategories() }; }, getProductCategories: function() { var categories = []; // Try to extract categories from breadcrumbs or other sources $('.breadcrumb a').each(function() { categories.push($(this).text().trim()); }); return categories; }, getMembershipInfo: function() { // Extract membership information var membershipInfo = { is_available: $('#member-popover').length > 0 || $('.member-price-button').length > 0, regular_membership_price: 0, current_membership_price: 0, benefits: [], savings_amount: 0, join_link: 'https://kbauthority.test/register.php?member=Y' }; // Extract the regular membership price (usually $99.00) var membershipPriceText = $('.members-discount-info .line-through').text().trim(); if (membershipPriceText) { membershipInfo.regular_membership_price = this.parsePrice('.members-discount-info .line-through'); membershipInfo.current_membership_price = $('.members-discount-info .mi-orange').text().includes('FREE') ? 0 : membershipInfo.regular_membership_price; } // Extract benefits $('.members-discount-info p').each(function() { var benefitText = $(this).text().trim(); if (!benefitText.includes('FREE MEMBERSHIP') && !benefitText.includes('*Once registration')) { membershipInfo.benefits.push(benefitText); } }); // Extract savings var savingsText = $('.mi-orange p').text(); var membersSavePrice = this.parsePrice('#mi-member-price'); if (savingsText.includes('save') && membersSavePrice) { membershipInfo.savings_text = savingsText.trim().replace(/.*save additional\s+/i, 'save additional '+ membersSavePrice); } // Calculate savings amount var regularPrice = this.parsePrice('#product_price') || this.parsePrice('.product_price'); if (regularPrice) { membershipInfo.savings_amount = this.parsePrice('#mi-member-price'); } return membershipInfo; }, addMessageToChat: function(message, isUser) { if($('.chat-message-placehoder').length) { $('.chat-message-placehoder').remove(); } var messageDiv = $('

' + this.formatMessage(message) + '

'); $('#chatHistory').append(messageDiv); // Scroll to bottom this.scrollChatToBottom(); }, formatMessage: function(message) { // Convert newlines to
tags //return message.replace(/\n/g, '
'); return message; } }; AskProfessional.init(); });

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (22)

Product details

DIMENSIONS AND MEASUREMENTS

UPC 00650531952448

See All From This Manufacturer

Kohler K-728-K-NA MasterShower 3/4 Inch 2 or 3-Way Transfer Valve

The MasterShower transfer valve brings a new level of innovation and flexibility as a custom shower solution. When paired with compatible trim, its three-way design allows control of up to three separate components to six different outputs, and can also easily be configured as a two-way transfer valve.

Features:

  • Transfers water flow to up to three separate components/outlets.
  • Components/outlets can be operated individually or in any combination of two components at the same time.
  • Supplied as a three-way transfer valve (360 degree handle rotation) but can be configured onsite for two-way operation (120 degree handle rotation).
  • Single handle operation.
  • Using 1 outlet: 18 gpm flow rate at 45 psi; using 2 outlets: 20.8 gpm at 45 psi.
  • One 3/4" female NPT inlet connection.
  • Three 1/2" female NPT outlet connections.
  • Requires additional valve/s to control On/Off operation and temperature (sold separately).
  • Requires transfer/diverter valve trim (sold separately).
  • Forged de-zincification-resistant brass body provides long term reliability and resistance to aggressive water conditions.

SKU: K-728-K-NA K728K-NA

Related products

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (24) See details

$168.04

KOHLER K-T10290-4 FORTE 3 7/8 INCH TRANSFER OR DIVERTER VALVE TRIM WITH LEVER HANDLE

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (25) See details

$221.36

KOHLER K-T10424-4V MEMOIRS AND STATELY 4 1/2 INCH TRANSFER OR DIVERTER VALVE TRIM WITH DECO LEVER HANDLE

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (26) See details

$181.31

KOHLER K-T10595-4 BANCROFT 3 7/8 INCH TRANSFER OR DIVERTER VALVE TRIM WITH LEVER HANDLE

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (27) See details

$625.84

KOHLER K-T13175-3A PINSTRIPE 4 1/2 INCH TRANSFER OR DIVERTER VALVE TRIM WITH CROSS HANDLE

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (28) See details

$625.84

KOHLER K-T13175-4A PINSTRIPE 4 1/2 INCH TRANSFER OR DIVERTER VALVE TRIM WITH LEVER HANDLE

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (29) See details

$272.33

KOHLER K-T13661-4 KELSTON 4 1/8 INCH TRANSFER OR DIVERTER VALVE TRIM WITH LEVER HANDLE

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (30) See details

$187.28

KOHLER K-T14491-3 PURIST 3 7/8 INCH MASTER SHOWER TRANSFER VALVE TRIM WITH CROSS HANDLE

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (31) See details

$187.28

KOHLER K-T14491-4 PURIST 3 7/8 INCH MASTERSHOWER TRANSFER VALVE TRIM WITH LEVER HANDLE

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (32) See details

$296.96

KOHLER K-T14673-4 LOURE 5 1/2 INCH TRANSFER OR DIVERTER VALVE TRIM WITH LEVER HANDLE

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (33) See details

$236.21

KOHLER K-T16242-4 MARGAUX 4 1/2 INCH TRANSFER OR DIVERTER VALVE TRIM WITH LEVER HANDLE

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (34) See details

$144.08

KOHLER K-T23509-4 PARALLEL 4 INCH TRANSFER VALVE TRIM

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (35) See details

$78.24

KOHLER K-T23949-4 BELLERA 4 7/8 INCH MASTERSHOWER TRANSFER VALVE TRIM

SEE ALL

Questions & Answers

Have a question? Need more information? Ask our community.

Ask Question

About the Manufacturer

Elevate Your Bathroom with Kohler

Kohler embodies timeless quality and modern design. It reflects a strong commitment to American craftsmanship. In many cases, it can transform an ordinary bathroom into a spa-like haven. You can discover more about Kohler’s meticulous manufacturing process by visiting How It’s Made. Additionally, hands-on exhibits await you at official Kohler Stores. This approach helps you experience true Kohler innovation up close. Meanwhile, explore the full range at Kohler for deeper insights into the brand’s versatility. Pair your favorite fixtures with Kohler Bathroom Accessories or Kohler Bathroom Faucets to elevate your style. In many bathrooms, matching these items with Kohler Bathroom Sinks creates a cohesive look. Indeed, well-chosen accents can make a stunning visual statement. Furthermore, complete your space with Kohler Medicine Cabinets or Kohler Mirrors. These additions unify your design and enhance daily routines. In the long run, consistent décor retains its charm and function.

Design Inspiration and Future-Proof Upgrades

Your bathroom deserves quality fixtures and forward-thinking enhancements. Therefore, consider adding Kohler Bathtubs or a Kohler Shower for maximum relaxation. In many households, these items serve as focal points of style and comfort. Meanwhile, you can achieve extra convenience with Kohler Bathroom Storage that keeps everything organized. Indeed, a clutter-free environment looks sleek and welcoming. Moreover, Kohler Toilet Seats offer improved ergonomics. In addition, you may refine your setup with Kohler Bidet Faucets or upgrade fully with Kohler Bidets and Kohler Washlets. These features deliver advanced hygiene in a modern form. Furthermore, Kohler Flushometers or Kohler Urinals can suit commercial needs or high-traffic areas. Visit KB Authority to browse the entire Kohler lineup. You can also upgrade your kitchen with Kohler Kitchen Faucets or Kohler Kitchen Sinks. Meanwhile, Kohler Kitchen Accessories boost efficiency and style. Finally, add Kohler Tub Fillers or Kohler Tub Spouts to complete your bathing oasis. Incorporate Kohler Lighting and enjoy cohesive illumination throughout your home. Additionally, advanced technology from Kohler can even reduce water usage without compromising performance. Make thoughtful choices today and ensure a future-proof design that stands the test of time. All these fixtures mesh with a timeless aesthetic that gracefully adapts to changing tastes. You gain peace of mind knowing your bathroom will remain stylish and functional for years.

Customers Also Viewed

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (36) See details

$224.66

RIOBEL R45 3-WAY TYPE T/P (THERMOSTATIC/PRESSURE BALANCE) COAXIAL VALVE ROUGH WITHOUT CARTRIDGE

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (37) See details

$134.00

ROHL R1040R ITALIAN BATH UNIVERSAL 3/4 INCH VOLUME CONTROL ROUGH VALVE

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (38) See details

$261.00

ROHL R1062BO ITALIAN BATH 4-PORT, 3-WAY DEDICATED DIVERTER ROUGH VALVE

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (39) See details

$111.50

GROHE 35601000 RAPIDO SMARTBOX UNIVERSAL ROUGH-IN BOX

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (40) See details

$184.19

AQUABRASS ABSV40255 5 1/8 INCH PRESSURE BALANCE VALVE FOR SHOWER

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (41) See details

$141.41

KOHLER K-8304-US-NA RITE-TEMP PRESSURE-BALANCING VALVE BODY AND CARTRIDGE KIT WITH SERVICE STOPS AND PEX EXPANSION CONNECTIONS

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (42) See details

$141.41

KOHLER K-8304-KS-NA RITE-TEMP PRESSURE-BALANCING VALVE BODY AND CARTRIDGE KIT WITH SERVICE STOPS

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (43) See details

$239.68

GROHE 29038001 ROUGH-IN SET FOR FLOOR-MOUNTED BATHTUB FAUCET

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (44) See details

$261.00

PHYLRICH 8090536RNL WALL LAVATORY/WALL TUB SET VALVE ROUGH

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (45) See details

$87.18

PHYLRICH 1-109 1/2 INCH COLD LAVATORY VALVE

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (46) See details

$87.18

PHYLRICH 1-110 1/2 INCH HOT LAVATORY VALVE

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (47) See details

$96.00

ROHL ZZ96224004 ARCANA 1/2 INCH HOT STEM VALVE

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (48) See details

$370.80

PHYLRICH DFPHYID PRESSURE BALANCE TUB AND SHOWER DIVERTER VALVE

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (49) See details

$249.30

PHYLRICH 9090536 SINGLE HANDLE WALL LAVATORY SET VALVE

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (50) See details

$419.40

PHYLRICH 1-117 1/2 INCH MINI THERMOSTATIC VALVE WITH THREE WAY DIVERTER

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (51) See details

$314.10

PHYLRICH 1-124 1/2 INCH MINI THERMOSTATIC VALVE FOR WALL BIDET

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (52) See details

$50.01

GROHE 1405300M SERVICE STOPS (2 PIECES)

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (53) See details

$461.70

PHYLRICH 34THERM 5 1/2 INCH THERMOSTATIC VALVE FOR SHOWER TRIM

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (54) See details

$121.29

TOTO TBN01001U MINI UNIT ROUGH-IN BOX FOR SHOWER TRIM

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (55) See details

$525.12

DORNBRACHT 35426970-900010 6 1/8 INCH WALL MOUNT ROUGH FOR CONCEALED THERMOSTAT WITH INTEGRATED SUPPLY STOPS

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (56) See details

$136.13

AQUABRASS ABSV01206 1/2 INCH SHUT-OFF VALVE

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (57) See details

$417.25

AQUABRASS ABFP92189 ROUGH-IN FOR FLOOR MOUNT TUB FILLER OR BATHROOM FAUCET

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (58) See details

$357.30

PHYLRICH 1-116 1/2 INCH MINI THERMOSTATIC VALVE WITH VOLUME CONTROL

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (59) See details

$134.00

ROHL R1041R SHOWER COLLECTION 3/4 INCH VOLUME CONTROL ROUGH VALVE

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (60) See details

$96.00

ROHL ZZ96225004 ARCANA 1/2 INCH COLD STEM VALVE

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (61) See details

$206.10

PHYLRICH 80001820 THREE FUNCTION 1/2 INCH WALL DIVERTER VALVE

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (62) See details

$261.00

PHYLRICH 8090536R WALL SHOWER AND TUB VALVE

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (63) See details

$219.04

AQUABRASS ABFP35829 TOSCA STAR ROUGH-IN FOR WALL MOUNT FAUCET

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (64) See details

$112.50

PHYLRICH 80607PHY 1/2 INCH IN-LINE STOP AND VOLUME CONTROL VALVE

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (65) See details

$276.30

PHYLRICH 1-115 1/2 INCH THERMOSTATIC VALVE

Customers Also Bought

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (66) See details

$74.20

KOHLER K-9514 MASTER SHOWER 60 INCH METAL SHOWER HOSE

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (67) See details

$136.88

KOHLER K-72776-G ARTIFACTS 3 5/8 INCH 1.75 GPM SINGLE-FUNCTION HAND SHOWER

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (68) See details

$124.54

KOHLER K-72796 ARTIFACTS 2 1/2 INCH WALL MOUNT SUPPLY ELBOW

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (69) See details

$210.94

KOHLER K-T72770-3 ARTIFACTS 4 1/2 INCH MASTERSHOWER TRANSFER VALVE TRIM WITH CROSS HANDLE

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (70) See details

$556.69

KOHLER K-13689-G 10 INCH 1.75 GPM ROUND SINGLE-FUNCTION RAIN SHOWER HEAD

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (71) See details

$53.65

KOHLER K-72799 ARTIFACTS 2 1/4 INCH SLIDEBAR TRIM

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (72) See details

$298.46

KOHLER K-72798 ARTIFACTS 30 INCH METAL WALL MOUNTED SLIDEBAR

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (73) See details

$313.28

KOHLER K-TS72767-3 ARTIFACTS 6 5/8 INCH RITE-TEMP VALVE TRIM WITH CROSS HANDLE

KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (74) See details

$116.78 $155.70

KOHLER K-8304-K-NA RITE-TEMP PRESSURE-BALANCING VALVE BODY AND CARTRIDGE KIT

Customer Reviews

Excellent frameless enclosure

We purchased a set for a shower enclosure with fears of being unable to install it. It took us some time to drill the holes through the porcelain tiles and adjust the vertical U extrusions on both walls for the fixed panels. Hanging the door was a bit difficult, especially adjusting the height and the opening. But overall we are very happy with the purchase. The set looks great and we saved a few dollars.

-Hflorez21

Great Sink

My family and I just completed a complete kitchen renovation and I got some great new things, but I have to say that this sink may be my favorite (as well as my husband and son's). It's deep, but not too deep. It's very roomy and stylish. I would highly recommend it to anyone who wants a larger stainless steel sink. I can fit large pans in it, multiple plates, glasses, etc. I can even polish large silver items in it.

-Amy M.

Fast Shipping & Friendly Service

Just got my Toto Neorest 550h. Amazing toilet. The prices from Kitchen & Bath Authority were unbeatable and considerably less than I was quoted elsewhere.

-FrankK-64131

Customer service is amazing!

I've gotten great service and quality from kbauthority for several years now, always friendly customer sales people and fast delivery

-Miked998

Loved it

Shopping online with KBAuthority was nothing but an incredible experience. I purchased a Brizo kitchen/shower system for my home and I wasn’t too sure about what I needed to purchase. So I spoke to a sales representative named Joe and he took me throughout the entire shopping process. He explained EVERYTHING from what I need to buy, why I need to buy, and how much it cost. I got everything in about 3 weeks (as promised). Since then, everything has been installed and the results are just outstanding. I don’t have any complaints and would definitely shop again.

-James Penso

Best price on delta products fast delivery !

Me and my husband ordered Delta products for two of the bathroom remodels that we are doing ,products arrived in about a week packaged really well and I got the best price possible on the web so very very happy!!! definitely recommend this company to others for any home remodel project

-Anne

Great Service, quick delivery time and as described.

We ordered two shower doors both came in about a week, the driver allowed us to inspect the products which was in good condition. Overall good shopping experience would recommend this company.

-RRWI

Great place

Got exactly what i needed and came in real fast love this place . Never had a problem on any order.

-Bubba1231

Wonderful Shopping Experience!

Can't say enough good things about this company. Wish every website was this organized. I wanted to replace our old, discolored door knocker. Went to the store, purchased the only one they had only to find out when I got home with it the CTC did not match. Never even knew there was a difference; thinking since you have to drill all the way through the door, this measurement would be standard. So, thank goodness for the internet! This site is so easy to use. Just select the CTC of your current knocker, if you are replacing one like I was, click and your choices appear! The knocker is absolutely gorgeous! Thank you KBAuthority.com!!

-nan_sky_76

Just What I Needed

I was looking for a 12" towel bar and all the stores on town only had 18" bars. I went online and found just what I needed at KBAuthority.com, the towel bar arrived through the mail, in less than 1 week, and is exactly what I was looking for.

-Lindakweed

Robern AIO mirrors

We were looking for Robern mirrors. KB Authority had them for half price. Ordering was easy and delivery was on time, within 2 weeks. We spoke with customer service several times to verify the order was moving along as the ability to follow the progress on line was somewhat limited. They were always very helpful.

-casbls

2nd satisfied purchase from KBA

some time ago I ordered a shower door and asked for help from cust service which worked out well.I ordered a bath/shower door last week and it arrived super fast and well packaged.I definitely have KBA on my list for future purchases.

-try-to-be-handy

Instant Hot, Instant service

Our Franke instant hot gave out on us after 16 years and we had to get a new one. Looked all over for the one we wanted and found it on the KBA website for the best price. Not only was the price right but the service and quick delivery made the difference. I will keep them on my "Favorites" for any future needs.

-Judy

Great price and service

Excellent customer service, quick order and receiving as promised.

-ArisM

Price - Selection - SERVICE

I think I looked at every stainless steel prep faucet and pot filler on earth. No, seriously. Ended up going with KBA because they offered exactly what I wanted at the best price. When there was an issue with the mfg (Hans Grohe), I called KBA. They were super helpful, explained exactly what was going on, and offered me options. When you build, you spend countless hours sourcing materials and it can make you crazy. KBA was a pleasure to deal with.

-Sheri_lynchax

great price and service

I initially had difficulty actually placing my order, however by using the chat, my issues were quickly resolved. I always do a lot of research on price and shipping before buying. KBAuthority was best. I was very impressed on the packaging. There was no way my sink was going to be damaged by mishandling.

-rpmartinsen

Excellent service on sink purchase.

Great selection with excellent prices. Ordered a Franke sink with inserts. Delivered in less than 2 weeks. Happy with purchase. No complaints.

-sbteleky

Lowest prices on Hansgrohe

I ordered $1000 worth of bath fixtures from KB. Loved the interactive chat to confirm i ordered all the right parts. Post-sales communication was so-so - I ended up having to call to confirm the ship date - but probably slightly better than expected given prices 5% or more below competitors'.

-bathbuyer

Best Price on Delta Shower Fixtures

Searched and found this to be best price on Delta venetian bronze shower set for bathroom remodel, even with modest handling fee (which was probably less than the actual shipping cost). No issues with packaging or shipping time.

-pas_duh_2

Great Prices and Customer Service

Ordered a bunch of Hansgrohe stuff for our new home. Their prices were very competitive. We made a few changes throughout the process and customer service was very accommodating.

-stjules

Great Communication - Best prices - Quick delivery

I ordered a vanity, sink, faucet and other accessories. They had the best prices of any on line seller and no sales tax on the order due to out of state shipping. I estimate I save at least $300 by using KBAuthority. My only issue was with UPS - The weight of the contents was too much for the contents and the box was split open upon delivery - no damage to the contents but a concern.

-kathbla

Fast Delivery

Delivery was fast. I had also sent an email with a question and got a response back the same day. I had forgot to include my coupon code and asked if it could still be used. The representative applied my coupon and adjusted the price. Overall very good shopping experience Thank you!

-Gelenj

Second time ordering, same great service

This was my second order with this company, everything arrived on time and packaged well! I have another bathroom remodel and will use kauthority.com for the third time.

-HQ

Believer

I hesitated to make such a large purchase (shower doors) online, but given the same product was available at a handful of retailers I trust for MUCH MORE, I took a breath and trusted this would work out. Being protected by Google helped me make the leap. I'm glad I did. Arrived quickly, all parts intact, and the final product looks perfect in my bathroom. I'm a believer in KBAuthority, and now a returning customer.

-ChezD

Happy Customer

I'm thrilled with my purchase from KBAuthority.com! The product quality is exceptional, surpassing my expectations. Their customer support was prompt and helpful, ensuring a smooth transaction. Plus, the shipping was incredibly fast, and my order arrived in perfect condition. Highly recommend for a reliable and satisfying shopping experience!

-Jannice Woother

Great Store

KBAuthority.com is a game-changer! They offer top-notch products that have truly enhanced my home’s aesthetic. The customer service team was attentive and answered all my questions with ease. I was impressed with the quick shipping, and everything arrived safely. Definitely my go-to for home fixtures!

-TJ

Great!

Shopping at KBAuthority.com was a breeze! They provide high-quality products, and their extensive range made it easy to find exactly what I needed. The customer support was outstanding, guiding me through my purchase. The fast and reliable shipping was the cherry on top. Will shop again!

-Tom M

Piece of Cake!

Easy to order, sales customer support is fantastic... Joe really helped me answer my questions

-Dacid D.

Great Site

I ordered a 72x36 shower base. Ordering was easy. They even confirmed that it was actually me since it was being shipped to a different address. They called me to pick a delivery date. It was delivered on a pallet, was well packed, and in perfect condition.I haven't installed it since it's a new construction.I would order from them again.

-Lenore H

Faster then anticipated

When I tried to order the 2 vanities off the internet, the site said to contact them due to low quantity. Did so, was told they were temporarily out of stock would possibly be 2 to 3 weeks for them to receive and another week for me to get them. Placed the order over the phone with the rep (didn't have to have them asap). Was surprised when they were at my door within a week.

-Edward W

Fast!

Absolutely fantastic. Item was on back order, but I guess you found one and promptly shipped it. Really happy I found you online.

-Greg S.

First Time Buyer

Wasn't sure about KBAuthority, a first time purchase. So glad I took a chance ..Everything went perfect and look forward to future purchases!

-Paul S.

Tips & Ideas

Which is better Kohler or Rohl?

A Celebration of Craftsmanship: Why Kohler and Rohl Are Timeless Choices for Your Kitchen and Bath When it comes to curating a beautiful, functional, and enduring kitchen or bathroom, one of the most important decisions you’ll make is choosing your f...

See Article →

What Is So Special About Kohler’s Numi 2.0 Smart Toilet?

Modern life calls for modern comforts. Our daily rituals deserve the finest technology. Bathrooms, once overlooked, now stand at the forefront of innovation. The kohler numi 2.0 sits at the very pinnacle of that evolution. It offers a brilliant mix of ...

See Article →

Unwind in Style: Your go-to guide to selecting the best bathtub!

Choosing the right bathtub for your home is an exciting endeavor, but it requires careful consideration to ensure you select the perfect unit for your project! Here's a simplified guide to help you navigate through the wide world of bathtubs. Native Tr...

See Article →

Choosing the Right Medicine Cabinet Instillation For Your Bathroom: A Buyers Guide

In every bathroom, a medicine cabinet serves as a vital storage solution, providing a convenient and organized space for medications, toiletries, and other essentials. To assist you in making the most informed decision, this comprehensive guide will ex...

See Article →

Our Guide to Choosing the Right Shower Door

Embarking on a bathroom renovation or simply looking to refresh your shower space? Selecting the right shower door is pivotal to both the functionality and aesthetics of your bathroom. In this guide, we'll navigate through the top 10 questions customer...

See Article →

How to Choose the Perfect Vanity for Your Bathroom with Light-Colored Tiles

On the journey of designing a bathroom, choosing the right vanity stands out as a crucial decision. In this comprehensive guide, we'll delve deep into the nuances of selecting the perfect vanity for bathrooms adorned with light-colored tiles. Through a...

See Article →

Mastering the Art of Faucet Selection: KBA's Complete Guide

Are you contemplating a kitchen or bathroom sink upgrade? The faucet, a vital component, plays a pivotal role, and with a plethora of options, making the right choice can be a daunting task. This comprehensive guide will take you through the essential ...

See Article →

Luxury Plumbing Features: Elevating Your Bathroom Experience

The bathroom is like a peaceful hideaway in our homes. It's not just for getting clean – it's turning into a fancy place to relax. Luxury plumbing features are the secret to making it extra special. In this blog, we'll talk about making your bathroom...

See Article →

Related Categories

Shower Heads
Wall Elbows
Hand Showers
Shower Accessories
Shower Hoses
Trims
Shower Arms
Slide Bars
Body Sprays
Roughs
Shower Sets
Shower Holders
KOHLER K-728-K-NA MASTERSHOWER 3/4 INCH 2 OR 3-WAY TRANSFER VALVE (2025)

References

Top Articles
Latest Posts
Recommended Articles
Article information

Author: Golda Nolan II

Last Updated:

Views: 6380

Rating: 4.8 / 5 (78 voted)

Reviews: 85% of readers found this page helpful

Author information

Name: Golda Nolan II

Birthday: 1998-05-14

Address: Suite 369 9754 Roberts Pines, West Benitaburgh, NM 69180-7958

Phone: +522993866487

Job: Sales Executive

Hobby: Worldbuilding, Shopping, Quilting, Cooking, Homebrewing, Leather crafting, Pet

Introduction: My name is Golda Nolan II, I am a thoughtful, clever, cute, jolly, brave, powerful, splendid person who loves writing and wants to share my knowledge and understanding with you.