Hampshire Ankle Pants - Lined

$39.90
$109.00
Save $69.10
people are viewing this right now
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Description
Features
  • Flat front/trouser
  • Straight leg
  • Hits at waist
  • Ankle length
  • Fly front with hook & bar closure
  • Front slash, back welt pockets
  • Lined
  • Imported


Fit and Material

Fit: Misses: 29"; Petite: 26 1/2"; Plus: 29"; Plus Petite: 26 1/2"

Material: Shell: 71% Polyester, 23% Viscose, 6% Spandex; Lining: 100% Polyester

Care: Machine wash cold; only non-chlorine bleach when needed; line dry; warm iron with steam if needed

1
Select product
Selected 0 item(s)
Misses/ 2
Misses/ 4
Misses/ 6
Misses/ 6L
Misses/ 8
Misses/ 8L
Misses/ 10
Misses/ 10L
Misses/ 12L
Misses/ 12
Misses/ 14L
Misses/ 14
Misses/ 16
Misses/ 16L
Misses/ 18
Misses/ 18L
Petite/ 2
Petite/ 4
Petite/ 6
Petite/ 6L
Petite/ 8
Petite/ 8L
Petite/ 10
Petite/ 10L
Petite/ 12L
Petite/ 12
Petite/ 14L
Petite/ 14
Petite/ 16
Petite/ 16L
Petite/ 18
Petite/ 18L
Plus/ 2
Plus/ 4
Plus/ 6
Plus/ 6L
Plus/ 8
Plus/ 8L
Plus/ 10
Plus/ 10L
Plus/ 12L
Plus/ 12
Plus/ 14L
Plus/ 14
Plus/ 16
Plus/ 16L
Plus/ 18
Plus/ 18L
Plus Petite/ 2
Plus Petite/ 4
Plus Petite/ 6
Plus Petite/ 6L
Plus Petite/ 8
Plus Petite/ 8L
Plus Petite/ 10
Plus Petite/ 10L
Plus Petite/ 12L
Plus Petite/ 12
Plus Petite/ 14L
Plus Petite/ 14
Plus Petite/ 16
Plus Petite/ 16L
Plus Petite/ 18
Plus Petite/ 18L
class SpzCheckoutNotificationHandler extends SPZ.BaseElement { constructor(element) { super(element); this.timer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } sendVariantListUpdateEvent_(data) { const messageData = { type: "theme_variant_list_update", data: { orderToken: data.order_token || data.order_id } }; clearInterval(this.timer_); if(!window.CheckoutAPI) { this.timer_ = setInterval(() => { if(window.CheckoutAPI) { clearInterval(this.timer_); postMessage && postMessage(messageData); } }, 500); } else { postMessage && postMessage(messageData); } } buildCallback() { this.action_ = SPZServices.actionServiceForDoc(this.element); this.registerAction('sendVariantListUpdateEvent', (param) => { this.sendVariantListUpdateEvent_(param.args.data); }); } } SPZ.defineElement('spz-custom-checkout-notification-handler', SpzCheckoutNotificationHandler); function handleGetOrderInfo(data) { if (data.order_id) { let api = `/api/checkout/order/info?order_id=${data.order_id}`; return Promise.resolve(api); } return Promise.reject({}); } function addEventListenerKickItems(data) { if (data.type === 'checkout_kick_items') { return Promise.resolve(data); } return Promise.reject({}); } exportFunction('handleGetOrderInfo', handleGetOrderInfo) exportFunction('addEventListenerKickItems', addEventListenerKickItems)