Blog

Doing something wrong – Guys vs Girls

Read more

Girlfriends Gotta Catch em all

Read more

Cats will prevail

Read more

Keep Track of your Employees and Their Time

Need an Employee Time Clock at your work location?  Look no further.  Make sure your employees get paid correctly and your managers aren’t pulling their hair out. http://codebangers.com/product/all-in-one-time-clock/    

Read more

Multiple File Uploaders on 1 Page WordPress plugin

jQuery(document).ready(function() { jQuery(‘#upload_image_button’).click(function() { formfield = jQuery(‘#input1’).attr(‘name’); tb_show(”, ‘media-upload.php?type=image&TB_iframe=true’); return false; }); jQuery(‘#upload_texture_button’).click(function() { formfield = jQuery(‘#input2’).attr(‘name’); tb_show(”, ‘media-upload.php?type=image&TB_iframe=true’); return false; }); window.send_to_editor = function(html) { imgurl = jQuery(‘img’,html).attr(‘src’); jQuery(‘#’+formfield).val(imgurl); tb_remove(); } });

Read more

Woocommerce Incredible Multi Page Checkout Extension on Sale + Coupon = Super Cheap

Woocommerce Incredible Multi Page Checkout is on sale. Give customers a more thorough checkout process.  Download it today. Plus we have a coupon that gives you an additional $5.00 off of the plugin price. 50 uses total.  Don’t miss out. Coupon code: nertcoupon Check out the plugin Here          

Read more

Island X Game – Open World Survival with Crafting, Building, Gardening, Hunting, and Fishing

Updates can be viewed here http://islandxgame.com

Read more

Fatal error: Call to undefined function is_plugin_active() | WordPress

There are some threads on the internet telling you to do this as a fix: function check_some_other_plugin() { if ( is_plugin_active(‘some-plugin.php’) ) { … } } add_action( ‘admin_init’, ‘check_some_other_plugin’ ); That solution didn’t do anything for me, all I had to do was include plugin.php on my file like this: include_once(‘wp-admin/includes/plugin.php’); And the error was […]

Read more

Echo User Role WordPress PHP

$user = new WP_User( $user->ID ); if ( !empty( $user->roles ) && is_array( $user->roles ) ) { foreach ( $user->roles as $role ) echo ucfirst($role); }

Read more

How to Add Custom Fields to User Profile – WordPress

Super easy way to add custom fields to the user profile on WordPress. This will take you 3 seconds to implement.   function modify_contact_methods($profile_fields) { // Add new fields – this can be as many as you like $profile_fields[‘cool_new_field’] = ‘Twitter Username’; // Remove old fields unset($profile_fields[‘some_existing_field_you_hate’]); return $profile_fields; } add_filter(‘user_contactmethods’, ‘modify_contact_methods’); //And if you […]

Read more