Add WP Bootstrap Navwalker To You WordPress Theme

Why Add Bootstrap Navwalker? The main reason for adding this addition to your WordPress Theme is best said by its author [Git Link] “A custom WordPress Nav Walker Class to fully implement the Bootstrap 4 navigation style in a custom theme using the WordPress built in menu manager.” By implementing this code, you will be […]





What is a Hard Refresh and How to do it

What is a Hard Refresh? a Hard Refresh is a way of clearing out the browser’s (i.e. Chrome, Firefox, Safari, etc.) cache for a specific page. Clearing the cache will force your browser to load the most recent version of the files used for a specific page, this usually include stylesheets or other important scripts. Clearing […]


Create Your First Google reCaptcha Keys

Why Do I Need a reCAPTCHA? According to Google: reCAPTCHA is a free service from Google that helps protect websites from spam and abuse. A “CAPTCHA” is a turing test to tell human and bots apart. It is easy for humans to solve, but hard for “bots” and other malicious software to figure out. Google Basically adding a reCAPTCHA will help reduce […]


Create a Google Maps API Key

Login To Your Google Account Start by searching Google for the “Google Developer’s Console” Should be the very first search result Sign into your current Google account (You have a Google Account if you have a Gmail), or simply create a new account now. Activate Your Google Account Agree to the Terms and Services and […]


TLS 1.2 with Classic ASP

Looking at Twillio docs Using Twilio with Classic ASP and VBScript we implanted Twillio SMS API We encountered the following error message: Invalid TLS version Upgrade Requiredhttps://www.twilio.com/docs/errors/20011426 The TLS versions on the server appreared to be causing the error TLS 1.0, TLS 1.1 and TLS 2.0 We used https://www.ssllabs.com/ssltest to get the current TLS Configuration. […]


Advance Custom Field PRO Repeaters

Advance custom fields is a very powerful plugin for WordPress. In this blog post I will be teaching you how to use the Repeater field from Advance Custom Fields PRO. There are will be two steps that are required to get the Repeater working. WordPress Admin Log into the your site back in and make […]


CSS Media Queries Min vs Max

Max-Width: If device width is less than or equal to 800px, then do {…} ** Use sparingly ** Min-Width : If device width is greater than or equal to 800px, then do {…}  ** Use as much as possible as Max will load more styles ** <style type=”text/css”> /* default styles here for older browsers. I tend to […]