Resources
You have found my resources vault! This is where I store any information I think is important! From e-courses I recommend, plugins I use, songs for home videos, and my business must-haves. Explore around and you may find something useful!
Blog Articles I LoveRaising Kind Kids: 5 Things You Need to Do
such a great article I want to reference and read frequently!
HomeschoolAt Home with Kids eBook
This ebook will give you all kinds of inspiration and ideas to keep your kids entertained while you are home and supporting them in distance learning. From crafts and cooking, books and games, to home learning and other educational activities!
HomeschoolInspire My Play Membership
This membership will get you the cutest printables to use for your littles that is all play-based learning!
CodeFix Stubborn Favicon
Have a favicon that won’t change? Right click on your website and click ‘View Page Source’, then Command + F to search for rel=”icon”.
See how many there are and find the ones that are last. Rename and replace the images in the uploads folder.
HomeschoolEmily’s Wonder Lab
This is a great Netflix show to get kid’s excited about exploring science.
HomeschoolOther Goose
A great resource for an educational plan for kids 2-7 that held space for open-ended discovery.
CodeRedirect Shopify Homepage
{% unless template != 'index' %} <script> window.location.replace( 'your_url' ); </script> {% endunless %}
{% unless template != 'index' %} <script> window.location.replace( 'your_url' ); </script> {% endunless %}
VideographyEpidemic Sound
Need music for your videos? This is a great place to find great background music!
HomeschoolThe Peaceful Press
Is a great curriculum focused on forming strong family bonds and very Montessori-friendly
HomeschoolFun, Cheap, or Free Resource
This blog post has dozens of free resources for kids learning at home. Definitely worth looking through her list for ideas!
HomeschoolThe Good and the Beautiful
A great priced curriculum for either Pre-K through 8 or High School!
Photography & Presets — Organization ToolsGemini
This app will help you find duplicate photos on your computer. A great way to save up space and get your digital photos more organized!
CodeChange Logo color depending on slick slide class
$('.content-block-slideshow').on('beforeChange', function(event, slick, currentSlide, nextSlide) {
if ($('.slideshow .slide[data-id="' + nextSlide + '"]').hasClass('dark')) {
$('body').addClass('dark');
} else {
$('body').removeClass('dark');
}
});
CodeHow to stop a video on click
$(this).closest('___').find('iframe').attr('src', $('iframe').attr('src'));
CodeWhen to use .on()
When you add elements to the dom, and then want click handlers on them, you have to add it to a dom element that was already there on page load.
$('.product-description').on('click', '.toggle-shipping', function(e) { e.preventDefault(); $(this).closest('.shipping-origin').find('.content').slideToggle(); $(this).closest('.shipping-origin').toggleClass('active'); });
Since shipping origin and the toggle-shipping link was added after the fact in jQuery, you have to basically call the js .on()
handler. Meaning that it’s going to watch the product-description for any .toggle-shipping
element added to it and then run that click event.