Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse
Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes Gifennse gifennse

Hetschke Whole Cut Leather Oxford Goodyear Welted Leather Sole Shoes

Price

$149.99 $129.99
Save $20.00
3 sold
Free Return & Exchange
SKU:DB1011-39B

color

Please select a color

size

Please select a size

Quantity

/** @private {string} */ class SpzCustomAnchorScroll extends SPZ.BaseElement { static deferredMount() { return false; } constructor(element) { super(element); /** @private {Element} */ this.scrollableContainer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.viewport_ = this.getViewport(); this.initActions_(); } setTarget(containerId, targetId) { this.containerId = '#' + containerId; this.targetId = '#' + targetId; } scrollToTarget() { const container = document.querySelector(this.containerId); const target = container.querySelector(this.targetId); const {scrollTop} = container; const eleOffsetTop = this.getOffsetTop_(target, container); this.viewport_ .interpolateScrollIntoView_( container, scrollTop, scrollTop + eleOffsetTop ); } initActions_() { this.registerAction( 'scrollToTarget', (invocation) => this.scrollToTarget(invocation?.caller) ); this.registerAction( 'setTarget', (invocation) => this.setTarget(invocation?.args?.containerId, invocation?.args?.targetId) ); } /** * @param {Element} element * @param {Element} container * @return {number} * @private */ getOffsetTop_(element, container) { if (!element./*OK*/ getClientRects().length) { return 0; } const rect = element./*OK*/ getBoundingClientRect(); if (rect.width || rect.height) { return rect.top - container./*OK*/ getBoundingClientRect().top; } return rect.top; } } SPZ.defineElement('spz-custom-anchor-scroll', SpzCustomAnchorScroll); const STRENGTHEN_TRUST_URL = "/api/strengthen_trust/settings"; class SpzCustomStrengthenTrust extends SPZ.BaseElement { constructor(element) { super(element); this.renderElement_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.xhr_ = SPZServices.xhrFor(this.win); const renderId = this.element.getAttribute('render-id'); SPZCore.Dom.waitForChild( document.body, () => !!document.getElementById(renderId), () => { this.renderElement_ = SPZCore.Dom.scopedQuerySelector( document.body, `#${renderId}` ); if (this.renderElement_) { this.render_(); } this.registerAction('track', (invocation) => { this.track_(invocation.args); }); } ); } render_() { this.fetchData_().then((data) => { if (!data) { return; } SPZ.whenApiDefined(this.renderElement_).then((apis) => { apis?.render(data); document.querySelector('#strengthen-trust-render-1539149753700').addEventListener('click',(event)=>{ if(event.target.nodeName == 'A'){ this.track_({type: 'trust_content_click'}); } }) }); }); } track_(data = {}) { const track = window.sa && window.sa.track; if (!track) { return; } track('trust_enhancement_event', data); } parseJSON_(string) { let result = {}; try { result = JSON.parse(string); } catch (e) {} return result; } fetchData_() { return this.xhr_ .fetchJson(STRENGTHEN_TRUST_URL) .then((responseData) => { if (!responseData || !responseData.data) { return null; } const data = responseData.data; const moduleSettings = (data.module_settings || []).reduce((result, moduleSetting) => { return result.concat(Object.assign(moduleSetting, { logos: (moduleSetting.logos || []).map((item) => { return moduleSetting.logos_type == 'custom' ? this.parseJSON_(item) : item; }) })); }, []); return Object.assign(data, { module_settings: moduleSettings, isEditor: window.self !== window.top, }); }); } } SPZ.defineElement('spz-custom-strengthen-trust', SpzCustomStrengthenTrust);
Free Worldwide Exchange
Free Returns 30 Days
Sustainably made
Secure payments

Step up your professional game with the Hetschke Goodyear cut leather oxford shoes

Crafted from premium 100% cowhide leather, these business shoes are built to last with a durable Goodyear construction. The leather sole provides a sophisticated look and all-day comfort, making them perfect for the busy executive on the move. Whether you're heading to the boardroom or a client meeting, these classic oxfords from Hetschke will have you looking sharp and feeling confident. Invest in quality footwear that can keep up with your career.

 

ADVANTAGES OF HETSCHKE

  • Cut by hand from the world’s finest leathers,durable.
  • 100% leather- High quality genuine cowhide leather.
  • The leather-lined insole adapts to the shape of your foot for a custom-like footbed.
  • From the hand cutting of the calfskin to the bevelling of the waist,Crafted and honed with unerring attention to detail our shoes but it’s this commitment to meticulous detailing that makes for a shoe of real quality and character.
  • Leather lining controls temperature, wicks away sweat and controls odor.
  • Leather Goodyear heel cap provides traction, durability and shock absorption.
  • This is a smart-casual loafer. The classic penny loafer design is combined with a Goodyear leather sole and can easily transition from office to evening wear with comfort and ease.

Designed and manufactured by master craftsmen

Premium calfskin

Premium rubber sole

Full leather insole and lining

Free return&exchange all the world