We specialize in creating custom WordPress plugins. Custom plugins, custom databases, custom wp_query, custom dashboards, we have done it.

We specialize in creating custom WordPress themes. Custom WordPress Responsive Themes from scratch. Themes using Bootstrap and Foundation.

We pride ourselves on Customer Service. Besides loving WordPress, we love our Customers and make sure they are happy!

We specialize in creating custom WordPress plugins. Custom plugins, custom databases, custom wp_query, custom dashboards, we have done it.

We specialize in creating custom WordPress themes. Custom WordPress Responsive Themes from scratch. Themes using Bootstrap and Foundation.

WordPress Logo

WordPress Transients, a Simple Example

The first time I heard of WordPress Transients, it sounded scary. But after figuring out what they were, how to create them and what they were used for, it is a no-brainer to not use them in certain situations. According

Keep Reading...

JavaScript Logo

Creating Event Handlers in JavaScript

Over the past 5 years, I had to redesign multiple websites and use some of the previous codebase as to not have to start from scratch. One thing I noticed a lot was previous developers using inline JavaScript click event.

Keep Reading...

WordPress Logo

Dynamically populating ACF Checkbox Field from Custom DB Query

ACF (Advanced Custom Fields), the greatest WordPress plugin on Earth allows us do some many things. Every time I work on a new project, which I always use ACF, I find a new use or something new the plugin can

Keep Reading...

WordPress Logo

Dealing with multiple React dom entry points in WordPress Theme Development

After getting so excited with the new WordPress script package which includes the ability of not having to manually setup Webpack and Babel for rapid Gutenberg Block creation, I ran into an issue when I started building a WordPress theme.

Keep Reading...

WordPress Logo

WordPress React Ready with Webpack and Babel bundled in core

Thank you WordPress Team! Webpack and Babel now come packaged in WordPress, time to start building some custom Gutenberg Blocks without spending time, a lot of time setting up your local build setup. Being a PHP developer first, dealing with

Keep Reading...

JavaScript Logo

Add Typewriter Text to your webpage

How to add Typewriter Text to a webpage with some easy javascript. First let create a div where the text will be displayed: <p id=”typewriter”></p> Here is the simple JavaScript: <script> var i = 0; var txt = ‘I am

Keep Reading...

WordPress Logo

WordPress Developer Helper Functions For Locating Files

WordPress comes with helper functions to located, files, images, documents within your plugin or theme. Here is a list of some of the most used functions developer use: 1. get_theme_root() : returns the address of the theme installation directory. 2.

Keep Reading...

Internet Explorer Logo

How to target IE / IE Specific CSS styles

OK. Let’s take a look at the IE changes over time. When we wanted to target IE browsers in order to use IE specific styles, we would normally create a CSS specific file(normally titled: ie.css) with the IE specific CSS

Keep Reading...

WordPress Logo

Simple WordPress HTTP API Tutorial

This article is to show beginners how to consume a Web Service and display results on your WordPress website. I say beginner, I mean a beginner in using Web Services or  a beginner in WordPress development. I also assume you

Keep Reading...