Code

Add Class when Div is in View

$('.site-footer').on('inview', function(event, isInView) {
	if (isInView) {
	  // element is now visible in the viewport
	  $('body').addClass('footer-visible');
	} else {
	  // element has gone out of viewport
          $('body').removeClass('footer-visible');
	}
});

CodeJavaScript

Use Keyboard Arrows for Slider

var $slider = $('.single-project-slideshow');
	$(document).on('keydown', function(e) {
	if(e.keyCode == 37) {
	   $slider.slick('slickPrev');
	}
	if(e.keyCode == 39) {
	   $slider.slick('slickNext');
	}
});

Wordpress PluginsWooCommerce

FacetWP

This plugin is a great way to add smart filtering to your WooCommerce shop page on your WordPress site.

VideographyNewborn & Graduation

“Forever Now” — Michael Bublé

Photography & Presets

Shutter Speed + Aperture + ISO

This video gives a great explanation of these three important photography elements and how they work so you can create the right setting for your photos.

E-CoursesPersonally Completed

SEO Basics

A great e-course to help you learn the basics of SEO and what you can do to boost your SEO without having to hire an expert!

Blogging ToolsStock Photos

Haute Stock

This site has very beautiful images for websites to really elevate your brand.

Blogging ToolsFree Stock Photos

Unsplash

This is my favorite spot for free stock imagery that is beautiful and not at all cheesy.

E-CoursesBlogging Beginners

Blog with a Full-Time Job

This e-course will help you start a profitable blog while you still work full-time and make the plunge to full-time blogging!

E-Courses

Pinterest E-Courses

A whole list of courses for Pinterest from growing your email list using Pinterest, How to Master Tailwind, and more Pinterest Strategies!

Photography & Presets

Hello Fashion Presets

CodeScrolling

Add Class when Element hits top of browser

var homepageNav = $('.homepage-wrap');

if (homepageNav.length) {
   var homepageNavOffset = homepageNav.offset().top - 70;

   if ( docScroll >= homepageNavOffset ) {
	$('.homepage-wrap').addClass('tan');
   } else {
	$('.homepage-wrap').removeClass('tan');
   }
}

CodeScrolling

Add Class when Element scrolls into View

function isScrolledIntoView(elem) {
  if (elem.length) {
	var docViewTop = $(window).scrollTop();
	var docViewBottom = docViewTop + $(window).height();
        var elemTop = $(elem).offset().top - 300;
	var elemBottom = elemTop + $(elem).height();

	return ((elemBottom <= docViewBottom) && (elemTop >= docViewTop));
   }
}

if (isScrolledIntoView($('.site-footer'))) {
   $('body').addClass('footer-visible');
} else {				 
   $('body').removeClass('footer-visible');
}

PodcastsCreative Entrepreneurs

Elise Gets Crafty

Her podcast is a great source for small business owners and entrepreneurs. Love absolutely everything she does!

PodcastsMotherhood

Coffee & Crumbs

I love this podcast, probably because I’ve followed Coffee & Crumbs’ essays for a while and I feel like I’ve gotten to know the 3 women who chat together each episode. A light conversation-type podcast to listen to when you need something in the background of a boring day!

PodcastsChristian Women & Motherhood

Happy Hour with Jamie Ivey

I have loved her podcast for a very long time. At some times I think about skipping or deleting an episode because her titles are just the number and the name of the interviewee but every time it is SO inspiring and it was exactly what I needed to hear that day. Such a great one for laundry day, a perfect combination of conversation and inspiration.

PodcastsMotherhood

Cocoon

This one is unique in the sense that it focuses on the challenges of motherhood and has more of a storytelling feel to it. It’s also a great one to throw on in the background and be inspired by other women’s stories.

PodcastsMotherhood

3 in 30 Takeaways for Moms

I love that this podcast gives you three doable takeaways for you to do each week to help make your family life a little better. Her topics are always so on point and I found myself downloading so many old ones that resonated with me!

PodcastsMotherhood & Christianity

Cultivating the Lovely

I love that this podcast combines both motherhood and Christianity and she interviews other women who are adding loveliness in the midst of chaos/cultivating the lovely.

PodcastsMotherhood

Everyday Extraordinary

Previously Extraordinary Moms podcast, she has great topics and discussions with moms and different lessons they’ve learned along the way!

PodcastsMotherhood & Christianity

Don’t Mom Alone

Previously known as God Centered Mom, this was the podcast that first got me interested in podcasts and I have listened to her since then! She is really good at interviewing and it’s a nice one to throw on while folding laundry where you don’t have to give a huge amount of focus to but still get inspiration out of it.

PodcastsChristianity

Chatologie

When you’re feeling some uplifting, her conversations are good and there’s usually a golden moment that I get something out of it!

PodcastsMotherhood

The Mom Hour

This podcast is two women who have conversations with each other about certain motherhood topics! A little bit different than one person interviewing another so a nice change with interesting topics.

PodcastsMotherhood & Minimalism

The Purpose Show

This podcast is a great one when you’re sick of listening to conversations of other people and want some self-help tips. She focuses a lot on motherhood and minimalism. She’s one I usually stay on top of because her episode titles resonate with me!

retreats

Willow Gathering Retreat

This retreat looks like a dream! I would love to join a group of fellow artists and enjoy learning a new skill and more about owning a creative business! Plus the atmosphere just looks divine!

Wordpress PluginsTranslate

Weglot

This plugin is SO easy to use and doesn’t clash with other JS. The design is great and you will eventually have to pay a price the more content it has to translate but it works so great and seamlessly that it’s so worth it!

PodcastsEntrepreneurship and Christianity

The Women with Fire

This podcast dabbles in all three topics that I’m interested in, motherhood, entrepreneurship, and Christianity so I enjoy hearing the stories of women who are getting things done! The interviewers and most of the interviewees are members of the same church as me so I also find it inspiring to listen to and how they combine those three topics together in their lives!

VideographyLabor & Newborn

“I Get to Love You” — Ruelle

PodcastsPregnancy

The Birthful Podcast

I listened to this podcast when I was pregnant and prepping for my own labor. It was great to hear all kinds of different stories although a few may have scared me just a little bit ha!

PodcastsInfertility

The Fertility Warriors

I listened to this podcast when I was going through our journey of infertility. Her voice is soothing to listen to and she discusses topics that I resonated with during that time.

Blogging ToolsSite Speed

GT Metrix

Like Tools Pingdom, this is a great resource to check your site speed and compare with Google Insights as well.