More productive programming – setting header records on a spreadsheet dynamically with Google Apps Script
Build a Gutenberg Related Posts Block with ACF Pro
How to build a custom Gutenberg related posts block using ACF Pro with just HTML and PHP! Things we already know as Wordpress Devs!
Getting Sample Order Data into WooCommerce
Lately I’ve been working on using Google Sheets to create dashboards for WooCommerce Order data. I want to write about it here, but since I can’t show you the sensitive customer data that is in my client’s site, I need
Add a Product Addon Checkbox to WooCommerce Single & Variable Products – Tutorial
In this post you’ll learn how to create a WooCommerce product addon checkbox for single and variable products – from scratch, without a plugin!
Cloning Objects in JavaScript Part 2 – a deeper dive
Normally when you create copies of objects in JS you end up with a shallow copy, where nested objects are copied by reference. Here’s how to make a deep clone.
Factory Functions in JavaScript – making more than one object
It’s pretty easy to make an object in JavaScript once you know the syntax, but if you want to make more than one of the same type of object, it’s better to do it from some kind of blueprint. This post is all about factory functions!
Cloning Objects in JavaScript
In Javascript, assigning an object to another variable won’t create a copy of that object. Here are 3 methods that will successfully clone a JS object.