Blog
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/
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(); } });
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
Updates can be viewed here http://islandxgame.com
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 […]
$user = new WP_User( $user->ID ); if ( !empty( $user->roles ) && is_array( $user->roles ) ) { foreach ( $user->roles as $role ) echo ucfirst($role); }
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 […]