10-70707-0

HUNTING BOOT SOCKS SHORT

False 150

10-70707-0

HUNTING BOOT SOCKS SHORT

0%

 8,00

 8,00

Colour: 6 - Hunting Green

Size: 36/38

  • fiber_manual_recordIn stock
  • local_shipping1-2 days delivery
  • closeNot on stock

Description

Hunting socks in 50% wool, which can be washed at 30 degrees in the washing machine. This type of wool is temperature-regulating, warms even in damp comdition and does not absorb the smell of sweat. This means that if the socks should get wet, the feet will not get cold. In addition, the socks can be worn for a longer time without them starting to smell bad. - Some really good and functional properties when you go hunting or spend a long time in nature.
The hunting sock has a small motif of a deer on the shaft.

Specifications

Brand logo

About mpCrafted

mpCrafted meet the demands of urban gentlemen as well as trend-spotting sneaker heads. 

In our constant search for perfection, we use OEKO-TEX certified yarns and processes, unique mélange-patterns and ultra fine cotton blends. All socks leaving our factory are closely knitted with a strong heel and toe reinforcement. 

With a passion for good honest garments, mpCrafted draws inspiration from its own legacy in continuation of its founders craftmanship. 

We are proud of our heritage and products. So will you be – when you wear it! 

Error executing template "Designs/mpdenmark/ecom/product/partials/metadata.cshtml"
System.NullReferenceException: Object reference not set to an instance of an object.
at CompiledRazorTemplates.Dynamic.RazorEngine_e4363477d5154f88ab57f3b390ef3cbe.Execute() in E:\Dynamicweb.NET\Solutions\staging.mpdenmark.espresso4.dk\files\Templates\Designs\mpdenmark\ecom\product\partials\metadata.cshtml:line 14
at RazorEngine.Templating.TemplateBase.RazorEngine.Templating.ITemplate.Run(ExecuteContext context, TextWriter reader)
at RazorEngine.Templating.RazorEngineService.RunCompile(ITemplateKey key, TextWriter writer, Type modelType, Object model, DynamicViewBag viewBag)
at RazorEngine.Templating.RazorEngineServiceExtensions.<>c__DisplayClass16_0.<RunCompile>b__0(TextWriter writer)
at RazorEngine.Templating.RazorEngineServiceExtensions.WithWriter(Action`1 withWriter)
at Dynamicweb.Rendering.RazorTemplateRenderingProvider.Render(Template template)
at Dynamicweb.Rendering.TemplateRenderingService.Render(Template template)
at Dynamicweb.Rendering.Template.RenderRazorTemplate()

1 @inherits ViewModelTemplate< EspressoProduct > 2 @using System.Web 3 @using Co3.Espresso.Base.Extensions 4 @using Co3.Espresso.Website.Models.FrontEnd.Ecommerce 5 @using Dynamicweb.Rendering 6 @using Dynamicweb.Ecommerce.Common 7 <script type="application/ld+json"> 8 { 9 "@@context" : "http://schema.org", 10 "@@type" : "Product", 11 "description" : "@HttpUtility.HtmlEncode( Model.DescriptionShort.StripHtml() )", 12 "sku" : "@Model.Number.StripHtml()", 13 "name" : "@Model.Name.StripHtml()", 14 "image" : "@( HttpContext.Current.Request.Url.Scheme + "://" + HttpContext.Current.Request.Url.Host + Model.ImagePrimary.Large )", 15 "offers" : { 16 "@@type" : "Offer", 17 "availability" : @( Model.Stock.Quantity > 0 ? "\"http://schema.org/InStock\"" : "\"http://schema.org/OutOfStock\"" ), 18 "price" : "@Model.Price.Value.ToJavaScript()", 19 "priceCurrency" : "@Context.Currency.Code" 20 } 21 } 22 </script> 23 24
Error executing template "Designs/mpdenmark/ecom/product/partials/klaviyo-viewed-product.cshtml"
System.NullReferenceException: Object reference not set to an instance of an object.
at CompiledRazorTemplates.Dynamic.RazorEngine_d3d2f85d92114a31a39dc1be44bcb0dd.Execute() in E:\Dynamicweb.NET\Solutions\staging.mpdenmark.espresso4.dk\files\Templates\Designs\mpdenmark\ecom\product\partials\klaviyo-viewed-product.cshtml:line 73
at RazorEngine.Templating.TemplateBase.RazorEngine.Templating.ITemplate.Run(ExecuteContext context, TextWriter reader)
at RazorEngine.Templating.RazorEngineService.RunCompile(ITemplateKey key, TextWriter writer, Type modelType, Object model, DynamicViewBag viewBag)
at RazorEngine.Templating.RazorEngineServiceExtensions.<>c__DisplayClass16_0.<RunCompile>b__0(TextWriter writer)
at RazorEngine.Templating.RazorEngineServiceExtensions.WithWriter(Action`1 withWriter)
at Dynamicweb.Rendering.RazorTemplateRenderingProvider.Render(Template template)
at Dynamicweb.Rendering.TemplateRenderingService.Render(Template template)
at Dynamicweb.Rendering.Template.RenderRazorTemplate()

1 @inherits ViewModelTemplate<EspressoProduct> 2 @using Co3.Espresso.Base.Extensions 3 @using Co3.Espresso.Website.Models.FrontEnd.Ecommerce 4 @using Dynamicweb.Rendering 5 @using Co3.Espresso.Website.Services 6 @using Co3.Espresso.Website.Models.FrontEnd.Settings 7 @using System.Web 8 @using System.Text.RegularExpressions 9 @using Co3.MPDenmark.Website.Models.Frontend.Ecommerce 10 11 @functions{ 12 public static string StripHTML(string input) 13 { 14 return Regex.Replace(input, "<.*?>", String.Empty); 15 } 16 } 17 18 @{ 19 var product = ProductService.Instance.GetProductById(Model.Id, Model.VariantId, true); 20 21 var pageDomain = Dynamicweb.Environment.Helpers.LinkHelper.GetHttpDomain(); 22 string productURL = ProductService.Instance.GetLink(product.PrimaryGroupId, product.Id); 23 24 string description = !string.IsNullOrEmpty(product.LongDescription) ? product.LongDescription : product.ShortDescription; 25 26 MPDenmarkProduct espressoProduct = (MPDenmarkProduct)ProductService.Instance.GetEspressoProduct( 27 new ProductSettings() 28 { 29 Id = product.Id, 30 VariantId = product.VariantId, 31 EmbeddedInModelList = true 32 }); 33 34 EspressoProductImageUrl productImage = espressoProduct.ImagePrimary; 35 36 string klaviyoShop = Pageview.Area.Item.GetValue<string>("KlaviyoShop"); 37 string klaviyoShopName = Pageview.Area.Item.GetValue<string>("KlaviyoShopName"); 38 39 List<string> productGroupNames = new List<string>(); 40 } 41 42 <script type="text/javascript"> 43 var _learnq = _learnq || []; 44 var categories = []; 45 var badges = []; 46 47 @foreach(var productGroup in product.Groups.ToList()) 48 { 49 if(productGroup.ShopId == klaviyoShop) { 50 productGroupNames.Add(productGroup.Name); 51 } 52 } 53 54 @foreach(var productGroupName in productGroupNames.Distinct().ToList()) 55 { 56 <text>categories.push("@productGroupName")</text> 57 } 58 59 @foreach(var category in Dynamicweb.Ecommerce.Services.ProductCategories.GetCategories(product).ToList()) 60 { 61 string categoryName = category.GetName(Dynamicweb.Ecommerce.Common.Context.LanguageID); 62 63 if (categoryName.Contains("Badge")) { 64 <text>badges.push("@categoryName")</text> 65 } 66 } 67 68 var item = { 69 "title": "@HttpUtility.JavaScriptStringEncode(product.Name)", 70 "id": "@HttpUtility.JavaScriptStringEncode(string.Format("{0}_{1}", product.Id, product.VariantId))", 71 "categories": categories, 72 "badges": badges, 73 "image_link": "@HttpUtility.JavaScriptStringEncode(pageDomain + productImage.Medium)", 74 "link": "@HttpUtility.JavaScriptStringEncode(pageDomain + productURL)", 75 "price": @product.Price.Price.ToString("0.00", System.Globalization.CultureInfo.InvariantCulture), 76 "created": "@product.Created", 77 "description": "@Regex.Replace(HttpUtility.HtmlDecode(StripHTML(description)), @"\r\n?|\n", " ")", 78 "inventory_policy": @(product.Stock > 0 ? 2 : 1), 79 "inventory_quantity": @product.Stock, 80 "color": "@(product.GetProductFieldValue<string>("COLORGROUP"))", 81 "size": "@(product.GetProductFieldValue<string>("SIZE"))", 82 "item_group_text": "@(product.GetProductFieldValue<string>("ITEMGROUPTEXT"))", 83 "brand": "@(product.GetCategoryValue<string> ("Brands", "mpBrandName"))", 84 "active": "@product.Active" == "True" ? true : false, 85 "b2c_active": "@(product.GetProductFieldValue<bool>("B2CActive"))" == "True" ? true : false, 86 "product_number": "@product.Number", 87 "color_filter": "@(product.GetCategoryValue<string> ("ProductGeneral", "ColorFilter"))", 88 "color_code_text": "@(product.GetProductFieldValue<string>("COLOURCODETXT"))", 89 "retail_dkk": "@(product.GetProductFieldValue<string>("RetailDKK"))", 90 "season_id": "@(product.GetProductFieldValue<string>("SEASONID"))", 91 "variant_color_sku": "@(product.GetProductFieldValue<string>("VariantColorSKU"))", 92 "store": "@klaviyoShopName" 93 }; 94 _learnq.push(["track", "Viewed Product", item]); 95 96 </script> 97
keyboard_arrow_up