Improve Bounce Rate

Bounce rate is single-page sessions divided by all sessions, or the percentage of all sessions on your site in which users viewed only a single page and triggered only a single request to the Analytics server. These single-page sessions have a session duration of 0...

jQuery | Select All Checkboxes

jQuery select all boxes description.   <?php /* You of course need to make sure the jQuery js file is being included. Here is one method of implementing this:<script src=”https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js”...

Jump to Confirmation Message

So there are times where there is a need to jump to the confirmation that is being shown on the form page after submission.  Here are a few examples of how to do this. //popping down to confirmation message upon submission for all forms add_filter(...

Lock Down WordPress login.php and wp-admin Directory

Sometimes securing a site also requires you to lock it down as to who can access the admin area. Here is a modification that can be done to the .htaccess file that will lock down the wp-login.php and also the wp-admin directory to specific IP addresses. Real easy to...

Manually Modifying WordPress’s URL via SQL

Sometimes it is easiest to modify the URL globally through SQL.  Here are the main commands you are going to want to run to modify the URL's throughout the database. UPDATE wp_options SET option_value = replace(option_value, ‘http://www.oldurl',...