Skip to content
All orders please email: sales@apexfencingsupply.com.au or Call/Text: 0432886443
All orders please email: sales@apexfencingsupply.com.au or Call/Text: 0432886443

Cap and Pin

Filters

$
$

SS Knock-In Pin Cap - Square

Original price $9.44 - Original price $15.68
Original price
$9.44 - $15.68
$9.44 - $15.68
Current price $9.44

Original price $9.44 - Original price $15.68
Original price
$9.44 - $15.68
$9.44 - $15.68
Current price $9.44
Sold out

SS Knock-In End Cap - Round

Original price $5.81 - Original price $8.34
Original price
$5.81 - $8.34
$5.81 - $8.34
Current price $5.81

Original price $5.81 - Original price $8.34
Original price
$5.81 - $8.34
$5.81 - $8.34
Current price $5.81

SS Knock-In End Cap - Square

Original price $8.71 - Original price $11.62
Original price
$8.71 - $11.62
$8.71 - $11.62
Current price $8.71

Original price $8.71 - Original price $11.62
Original price
$8.71 - $11.62
$8.71 - $11.62
Current price $8.71

SS Knock-In Pin Cap - Round

Original price $7.99 - Original price $12.05
Original price
$7.99 - $12.05
$7.99 - $12.05
Current price $7.99

Original price $7.99 - Original price $12.05
Original price
$7.99 - $12.05
$7.99 - $12.05
Current price $7.99
document.addEventListener('DOMContentLoaded', () => { const productJson = [...document.querySelectorAll('[id^=ProductJson-')]; if (productJson.length > 0) { productJson.forEach((product) => { const sectionId = product.id.replace("ProductJson-", "shopify-section-"); const variantSKU = document.querySelector('#' + sectionId + ' .variant-sku'); const inputSelects = [...document.querySelectorAll('#' + sectionId + ' .single-option-selector')]; const productInfo = JSON.parse(product.innerHTML); const inputValues = []; const optionValues = []; let count = 0; inputSelects.forEach((input) => { inputValues.push(input.value); optionValues.push(count); input.addEventListener('change', (evt) => { const currentValue = evt.currentTarget.value.toString(); const changedIndex = inputSelects.indexOf(evt.target); inputValues[changedIndex] = currentValue; variantSKU.innerText = ' '; productInfo.variants.forEach((variant) => { if (JSON.stringify(variant.options) == JSON.stringify(inputValues)) { variantSKU.innerText = variant.sku; } }); }); count += 1; }); }); } });