PodcastsFatherhood

HeyDad Podcast

This is a podcast from the perspective of dads. It’s super light-hearted and funny so I listen to this during long road trips to make the time go by fast.

Christianity

Mormons A to Z

I know the cohost Ashley and so I started listening to support and I’ve really enjoyed them! They chat about topics that relate to my religion and interview other members. They do a lot of great research on topics that are sometimes difficult to understand or discuss in our culture.

ShopifyCode

How to add fonts to a Shopify site

Make it a fonts.scss.liquid and then add {{ ‘fonts.scss.css’ | asset_url | stylesheet_tag }} to theme.liquid

Example of formatting:

@font-face {
    font-family: 'BeausiteGrandThin';
    src: url('BeausiteGrandThin.eot');
    src: url('BeausiteGrandThin.eot') format('embedded-opentype'),
         url('BeausiteGrandThin.woff2') format('woff2'),
         url('BeausiteGrandThin.woff') format('woff'),
         url('BeausiteGrandThin.ttf') format('truetype'),
         url('BeausiteGrandThin.svg#BeausiteGrandThin') format('svg');
}

Code

Search Results by Relevance instead of Post Date

add_filter('relevanssi_orderby', 'rlv_fix_order');
function rlv_fix_order($orderby) {
    $orderby = "relevance";
    return $orderby;
}

VideographyAdventure and Fun

“Beautiful Now” — Zedd

Code

Screenshots to be JPG instead of PNG

Type into Terminal:

defaults write com.apple.screencapture type jpg;killall SystemUIServer

E-CoursesCleaning & Motherhood

Kendra Hennessy Courses

VideographyStrong and Fun

“Don’t Kill My Vibe” — Sigrid

VideographyAdventure and Chill

“Man on the Moon” — Zella James

VideographyFamily Upbeat

“Celeste” — Ezra Vine

VideographyPositive & Fun

“Brave” — Sara Bareilles

Blogging Tools

Tasty Pins

Makes it easy to have your blog pinnable.

E-CoursesMini Course

Unburdened

If you want to sort through the clutter in your mind, home, calendar, health, routines, and relationships, this guide will help you go from drowning in a sea of stress and overwhelm to owning your time and living the best version of your life!

retreats

Boss Mom Retreat

An epic event for all boss moms, or future boss moms, who are looking to give their business a growth spurt!

E-Courses

The Supermom Vault

This e-course helps you ROCK your mom life! You’ll have video and audio trainings plus PDF’s that help you declutter your home and simplify your life!

E-Courses

Time-Blocking Mom Workbook

This workbook is only $9 and if helps you to take ownership of your time by creating a time-blocked, flexible but rigid schedule that works for you and your life!

E-Courses

Skillshare

Skillshare is a wonderful place to learn not only creative skills but also business skills! Want to learn more about MailChimp or Illustrator? Skillshare has it, and from people who are masters. Definitely a place to go check out any that interest you.

E-Courses

CreativeBug

If you want to learn something creative, CreativeBug is a great place to start at! It’s a great gift for creative kids and adults.

Blogging ToolsInteractive Quizzes

Try Interact

Give your reader’s a quiz to engage and generate leads for your email list! This is great for coaches or even just a fun quiz for bloggers!

Design ToolsPhotography

Lightroom

If you really want to step up your photography game as a business or as a blogger, Lightroom is the best program for that! It will immediately elevate your photos and there are hundreds of free tutorials to help you learn how to use it!

Blogging ToolsSite Speed Optimization

Page Weight imgIX

This is a great source to see how your images are impacting your site speed.

Photography & Presets

Jaci Marie Pastel Pack Preset

Code

Email Signature

<table style="font-size: 12.8px; font-family: times;">
<tbody><tr><td><a href="http://mckenziesuemakes.com/" target="_blank">
<img src="http://mckenziesue.engine.com/wp-content/themes/mckenziesue-basetheme/img/[email protected]" width="250&quot;" style="float: left; padding-right: 15px; padding-bottom: 15px;"></a>
<p style="padding-left: 0px; margin-top: 0px; font-family: lato, sans-serif; margin-bottom: 0px; font-size: 7px; letter-spacing: 1px;"><a style="color: black;">MCKENZIE SUE RUCKER<br>
<br>PH: 509.855.2557<br><br>[email protected]</a></p></td></tr></tbody></table>

Code

If WordPress max file-size is too low

*Caution: You should not edit this file if you are not confident in the code. You shouldn’t really change the upload_max_filesize for purposes other than importing.

 

For wordpress upload go to /etc/php5/apache2
Vim php.ini
Search for upload_max_filesize and post_max_size by writing / before the word.
Instead of copying the wording just change the number.
Do sudo service apache2 restart.

Code

_____@_______.com.test-google-a.com

When Contact Form 7 does not send to a Gmail email for some reason, add .test-google-a.com to the end and it may help. I learned this trick from a Google support agent and it has worked every time. You will want to also download the ‘Contact Form 7 Submissions’ to make sure any submissions don’t get lost between your site and your email inbox.

Code

Smooth Scroll Link

$(".smooth-scroll-link").click(function() {
that = this;

var href = $.attr(that, 'href');
  if (href != '#' && href != '') {
    var target = $(href);
    $('html, body').animate({
       scrollTop: target.offset().top
    }, 1000);
  }
});

Code

Scroll to bottom of Page

$(window).scroll(function(){
if ($(window).scrollTop() == $(document).height()-$(window).height()){
    //Add Javascript
}
});

Code

Hide Pinterest Link once you hit the bottom of site

// Hide Pinterest Link
if (docScroll > ($(document).height() - $(window).height() - 100)) {
  $('._____').addClass('hidden');
    } else {
  $('._____').removeClass('hidden');
}