A little short follow up from my previous blog…

We’re half way through February, what the actual heck! Where is time going!?

So in my previous blog post I wrote about how I wasn’t really feeling myself or feeling very motivated, and basically how I needed to get my mojo back… Well I’m pleased to say I’m feeling much better and I think my love for my lovely life is back.

It’s safe to say January and even February can feel a little bleak, most of us are a little low on funds from the Christmas season. I personally was also going through some relationship issues, I felt I was at a point in my life where I didn’t really know what direction I was going in, and everything just seemed well a little blah!

I had a good few weeks of being an emotional mess, not only due to my relationship falling apart, but I just couldn’t seem to shift my mind from thinking negatively and I’ve never felt like this, to the point where I never understood when people told me they felt down, I would try help as best I could but I also thought well why don’t you just snap out of it, now I’ve realised it’s actually harder said than done.

So what has made me feel better about life, firstly every night I have been listening to guided meditations, which have made me feel super relaxed and given me a fab nights sleep, Every morning I’ve been listening to positive affirmations , or motivational talks. Some people may think this is a load of rubbish, but for me I feel it has helped me start my day in a more positive way.

I joined some great groups on Facebook, both professional groups and also more spiritual groups and just reading or listening to like minded people really helps and makes you understand that in life everyone has blips, but most problems can be easily solved and solutions found. I think getting advice of guidance from people out of your friendship or family group is so helpful to give you a new insight on your outlook.

Without wanting to sound too mushy, but just being thankful and grateful for all that we have is massive, when I think about my life it’s bloody brilliant. I almost feel guilty for feeling down about it. I have friends, family, health, my own business which I know I can make great, I should be and am thankful for all that I have - so thank you universe for delivering all that I’ve asked for so far.

I’ve got so many ideas for House of 925, and it’s time to put these ideas into action and build my empire to all that I want it to be and more.  It’s safe to say I’m back and ready to grow my business and lets be honest grow that bank account.

If you would to know the guided meditations, affirmations or groups I've joined on facebook please drop me a DM or email at sales@houseof925.com and I'd be happy to share. :) 

Kate @Houseof925 xoxo

 

 

 

 

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(), ); }