Using The History Palette Like A Pro

Photoshop has an amazing tool that is often overlooked by most – the History palette. the History palette in Adobe Photoshop is the Undo/Redo function on crack. It constantly saves your edits, or states, as you are working – giving you restore points you can jump back and forth between. If you don’t see the […]

How Do I Set My Posts/Pages To Expire?

Over my years of working with WordPress I have often seen some rather extreme measures being taken by webmasters to accomplish specific tasks/functions with their WordPress-powered websites. A perfect example was a client who was manually deleting her “limited time offer” sales Pages whenever her sale time would expire. This might not sound that bad, […]

Add Any Shortcode To A WordPress Page Template

WordPress offers thousands of different plugins that let you add alot of different functions and features to your website. Furthermore most of these can easily be integrated across your website with a few simple short-codes which you simply copy paste into the WordPress editor. However what do you do when you want to integrate that […]

Understanding PHP Constants

A constant within PHP is essentially an identifier for a simple value, and unlike a variable, the value of a constant cannoyt be changed after it is declared. By default a constant is case-sensitive; and most people tend to give constant identifiers uppercase names. To get started you will want to define a constant using the […]

Running Ads Using The New Instagram Business Tools

Now that the new Instagram Business profiles have started rolling out more people have direct access to Instagram ads – something that in the past was limited to users of Facebook Ad Manager. Let’s take a look at how easy it is to setup a new Instagram ad once you have converted your profile to […]

How Do I Make My Embedded YouTube Video Autoplay?

Making an embedded video automatically start playing when a client loads your web page is a surprisingly popular request, especially for landing pages that are meant to capture the visitors attention in as short of a time period as possible. Unfortunately YouTube doesn’t offer an autoplay option within their embed generator – however there is […]

Beginner’s Guide for Choosing The Perfect WP Theme

Trying to pick the perfect WordPress theme is a tedious task. It is fairly common to see new users struggling with WordPress themes, changing them countless number of times. One would spend time and effort in customizing and editing the theme as per their requirement, and eventually will move on to another theme. This is […]

Add As Many Dots As You Want To Your Gmail Email Address

Encrypting or hiding your email address when posting it online has always been a highly recommended way to protect your email address from excess spam – and a little known trick lets you make use of that feature with your Google gMail account. See gMail doesn’t actually recognize periods – and as such you can add […]

Get A Users Gravatar Image Via PHP

Gravatar’s have been popular for years now – and to date they’re integrated across a plethora of websites – serving over 8.6 million avatars every single day. With that said there are also a ton of plugins available for most blog and CMS scripts; however what if no plugin exists for our website, or we […]

Infographic: Getting More From Your Google Searches

Way back in 2011 HackCollege put together a phenomenal infographic with Google tips & tricks that everyone should know to get the most out of every single search. The original post about this was targeted towards students – however these days everyone does some sort of online research. Business owners, content creators, etc. I haven’t seen […]

The 10 Things All PHP Programmers Should Know

The Internet as we know it was built by webmasters, designers, and developers who got their start thanks to a slew of free resources and tutorials that were available to them. This is something that I have always streamed to maintain with Rapid Purple – and it seems Josh Leskar and his team over at […]

Understanding The Difference Between Class and ID

A good buddy of mine has recently started his own learning process diving into HTML, CSS, and Javascript. He came to me with a question recently wanting to know what the actual difference was between a class and an id, and when each should be used. As I explained this to him I thought that this would make […]

WordPress Security: Password Protect Your WordPress WP-Admin Directory

I had just mentioned how popular WordPress has gotten – coming close to a 50% market share among all CMS platforms – and I figured this would be a great time to write a quick tutorial on password protecting your WordPress admin login page. Now I want to mention that this will not prevent hacker […]

Auto Generation of New Prospects in eLEAD CRM via ADF XML Emails

Earlier in the week I had to do a rather niche task with a local leasing company I work with. They have switched over to eLEAD CRM and as such wanted to convert all of their online lease quote request forms to submit to their new eLEAD CRM. This way requests from existing customers will […]

Getting Started With WordPress: Understanding WordPress Menus

WordPress Menus can seem a bit confusing at first, and after having a friend recently get totally lost trying to figure out the menus for his website – I got the idea to put together this quick tutorial. First off let’s define some terms I will be utilizing throughout this tutorial. Menus are collections of links. Menu Locations are […]

The Basics of PHP Classes and Objects

As you learned in previous tutorials functions provide a way for you to divide your program’s tasks into separate, smaller tasks. Classes and objects are somewhat similar in helping you to organize your program. They are used to create collections of related variables and functions, which can be used to more accurately represent real-life situations. […]

FOR and FOREACH Loops

Much like WHILE loops FOR and FOREACH loops are meant to enable the repeated execution of a section of code. However, unlike while statements, for and foreach have features built into them to update the sentinel value for every repetition. So lets go back for a moment to our original example in the WHILE loops tutorial – […]