How to retrieve old messages from WhatsApp when you set the account up on a different phone number.
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.
What is this? JavaScript
The this keyword in JavaScript points to different objects depending on the context it is used in. How does it change? Let’s find out!
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!
Remove Uncategorized from Google sitelinks without a plugin – WordPress
How to stop Google from indexing your Uncategorized (or any) category and remove it from sitelinks on a SERP without a plugin.
Object literals and terminology in JavaScript
An object is a collection of key-value pairs. To be useful, they should be logically related values. They can be created with object literal syntax, meaning that the key-value pairs are enclosed in curly braces and usually assigned to a
Adding Stack Navigation to React Native – Tutorial
In this post I’ll show you how to install React Navigation for React Native and to build a stack navigator. Come along for the ride, it’ll be fun!
Find WooCommerce products with missing images (SQL)
Finding WooCommerce products with a missing product image is a drag. If you have database access, you can find them all with one handy SQL script. Here’s how!
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.