Where is my order?

Your order will usually dispatched within 24 to 48 hours and the delivery time will depend on the shipping option selected.

Where is my invoice?

Your invoice can be found in the 'Shipping Confirmation' email that was sent to let you know your order has been dispatched.

What if I have entered the wrong item or size in my order?

If you have accidentally selected the wrong item or size in your order please contact a member of our House of 925 customer support team immediately with the correct amendments by clicking here. sales@houseof925.com  We advise getting into contact as soon as possible as we usually dispatch orders within 24 to 48 hours. Once your order has been processed for dispatch to the stated address we will be unable to make any amendments to your order. Should you chose to exchange an item but were too late to do so, you will be liable for the returns cost.

What to do if I have entered the wrong shipping address in my order?

If you have entered the wrong shipping address into your order please contact a member of our House of 925 customer support team immediately with the correct address. We advise getting into contact as soon as possible as we usually dispatch orders within 24 to 48 hours. Once your order has been processed for dispatch to the initially stated address we will be unable to make any amendments therefore we cannot be held liable for you not receiving your order.

What if I have received the wrong item?

In the circumstances, that we hope to never occur, one of our House of 925 team members has dispatched the wrong order to you, please get in to contact immediately

Note: All return costs you pay to return the incorrect item will be reimbursed.

 

 

const selectVariantByClickingImage = { // Create variant images from productJson object _createVariantImage: function (product) { const variantImageObject = {}; product.variants.forEach((variant) => { if ( typeof variant.featured_image !== 'undefined' && variant.featured_image !== null ) { const variantImage = variant.featured_image.src .split('?')[0] .replace(/http(s)?:/, ''); variantImageObject[variantImage] = variantImageObject[variantImage] || {}; product.options.forEach((option, index) => { const optionValue = variant.options[index]; const optionKey = `option-${index}`; if ( typeof variantImageObject[variantImage][optionKey] === 'undefined' ) { variantImageObject[variantImage][optionKey] = optionValue; } else { const oldValue = variantImageObject[variantImage][optionKey]; if (oldValue !== null && oldValue !== optionValue) { variantImageObject[variantImage][optionKey] = null; } } }); } }); return variantImageObject; }, _updateVariant: function (event, id, product, variantImages) { const arrImage = event.target.src .split('?')[0] .replace(/http(s)?:/, '') .split('.'); const strExtention = arrImage.pop(); const strRemaining = arrImage.pop().replace(/_[a-zA-Z0-9@]+$/, ''); const strNewImage = `${arrImage.join('.')}.${strRemaining}.${strExtention}`; if (typeof variantImages[strNewImage] !== 'undefined') { product.variants.forEach((option, index) => { const optionValue = variantImages[strNewImage][`option-${index}`]; if (optionValue !== null && optionValue !== undefined) { const selects = document.querySelectorAll('#'+ id + ' [class*=single-option-selector]'); const options = selects[index].options; for (let option, n = 0; (option = options[n]); n += 1) { if (option.value === optionValue) { selects[index].selectedIndex = n; selects[index].dispatchEvent(new Event('change')); break; } } } }); } }, _selectVariant: function() { const productJson = document.querySelectorAll('[id^=ProductJson-'); if (productJson.length > 0) { productJson.forEach((product) => { const sectionId = product.id.replace("ProductJson-", "shopify-section-"); const thumbnails = document.querySelectorAll('#'+ sectionId + ' img[src*="/files/"]'); if (thumbnails.length > 1) { const productObject = JSON.parse(product.innerHTML); const variantImages = this._createVariantImage(productObject); // need to check variants > 1 if (productObject.variants.length > 1) { thumbnails.forEach((thumbnail) => { thumbnail.addEventListener('click', (e) => this._updateVariant(e, sectionId, productObject, variantImages), ); }); } } }); } }, }; if (document.readyState !== 'loading') { selectVariantByClickingImage._selectVariant(); } else { document.addEventListener( 'DOMContentLoaded', selectVariantByClickingImage._selectVariant(), ); }