Avoid Console Logging in Production

By | Engineering

You probably have your JavaScript code littered with console.log(“blah blah blah”) statements throughout your code to test functionality and verify data. In production, you probably don’t want these statements written out for non-developers to see, so overwrite the window.console.log function with your own blank function that will get called instead.

Read More

CSS Variables Tutorial

By | Engineering

CSS variables are the up and coming new feature of CSS that allows you to define variables in your styles that can ripple through styles, and external sheets, and make CSS clean, maintainable, and easy to update. You can define global variables by nesting them inside a :root selector and then using the — prefix for a variable name: value….

Read More

WordPress Update Domain in Database

By | Engineering

When you want to move a WordPress site from one domain to another, it’s not as simple as just updating a few DNS binding entries. Update your DNS entries on your domain provider (Google Domains, NameCheap, etc) for your new domain to point at the same server Ensure the binding records are setup to serve content from the directory where…

Read More