WooCommerce pre-check terms conditions

WooCommerce Pre-Check Terms and Conditions box

WooCommerce is great with security and I understand the importance of having the user check the “I have read and agree to the websites terms and conditions*” but sometimes you might just want to skip the extra step and help the customer along in their checkout process. This is what I’m going to explain how […]


SlickSlider flexbox

Slick Slider in Felxbox Fix

I love Slick Slider, I love Flexbox, but they do not love each other. Thats okay, with simple CSS, we can make them love each other. .your-container, .your-container * { min-height: 0; min-width: 0; } Have a container around your slider inside of your flexbox and you should be all set. I got this fix […]


Watching

This is just some fun with mouse tracking. A ISON


Lightbox / Modal / Zoom Effect like Medium.com

Lots of people are using Medium for their blogs. I really enjoy the functionality of the site so I figured I would try to implement some of their cool features. The one that really stuck out to me was the lightbox, modal, zoom effect that they have on some of their images. This isn’t the […]


Gold Text css image

Gold Text with CSS or Image

I wanted to create some gold text for a website without using photoshop. Using a solid color is not an option because you can’t really get that gold color. I found 2 good options. The First option was pure css and the second one was css with an image. Check them out below. PURE CSS […]


Transmit Host Key Changed

Transmit Host Key Changed Fix

Are you getting this error message in Transmit: Host Key Changed for ____ The server’s host key has changed since your last connection. This is most likely due to a server changed, but you should check with your server administrator to be sure. Click OK to accept the new host key. After clicking “OK” 17 […]


computer code

Show or Hide content based on WordPress user logged in

The code below shows all that it takes to show or hide content when a user is either logged into your site or not. <?php if (is_user_logged_in()){ ?> <p>you are logged in</p> <?php } else { ?> <p>log-in please</p> <?php }; ?> When a user is logged in, they will see the “you are logged […]


Take away google maps scroll zoom feature

I spent a lot of time trying to find something that I thought would be very simple. Google usually amazes me with all of the features that they provide. One thing that they fell short on was zoom feature while scrolling. This article will discuss the iframe embed code and not the API google maps. […]


Adding a Google Calendar to your site

I really enjoy google and their vast array of integrated features. The only thing that they really lack is a mission for responsive design. They make adding a google calendar easy by giving you all sorts of options for adding your google calendar to your site. Simply go through a few steps in your google […]


Upload SVG’s to WordPress Media Library

I really like SVG’s. I like to use them whenever I can. They are great for new devices and screens that have beautiful screens. Sure, they don’t get cached as easily as regular images but they have a lot to make up for it. So, when I went to upload an SVG to my WordPress […]