Skip to content

Instantly share code, notes, and snippets.

'onUploadProgress' : function(file, fileBytesLoaded, fileTotalBytes, queueBytesLoaded, queueDataUploadSize) {
// Triggered periodically during a file upload
var perc = Math.round(fileBytesLoaded / fileTotalBytes * 100);
var progress = ( perc < 99 ) ? 'Uploading ' + perc + '%' : '<i class="fa fa-cog fa-spin"></i> Processing: ' + file.name;
if( perc >= 99 ){
$('.uploadify-queue').fadeOut();
};
$('#progress').html(progress).show();
},
## OLD WAY
<VirtualHost *:80>
##ServerAdmin postmaster@dummy-host2.localhost
DocumentRoot "C:/Development/personal-projects/grammys/site/application"
ServerName grammys.localhost
##ServerAlias www.dummy-host2.localhost
ServerAlias *.grammys.localhost
ErrorLog "logs/grammys.localhost-error.log"
CustomLog "logs/grammys.localhost-access.log" combined
@dboutote
dboutote / Remove Category Dropdown
Last active August 29, 2015 14:08
Remove the category taxonomy drop down from the posts lists table in WordPress Admin (edit.php)
<?php
/**
* Remove the category taxonomy drop down from the posts lists table
*
* @param string $output The resulting HTML to build the select dropdown
* @param array $r The array of arguments to build the select dropdown
*
* @return string $output The filtered HTML of the dropdown
*/
@dboutote
dboutote / Remove Category column
Created October 30, 2014 14:54
Remove Category column from the Posts list table in WordPress admin (edit.php)
<?php
/**
* Customize columns on list table
*
* @access public
* @since 1.0
*
* @param array $columns An array of indexes that appear on the posts lists table
* @return array $columns The filtered array of table columns
@dboutote
dboutote / gist:62e4fac0600895d5b879
Last active August 29, 2015 14:10
This checks if a parent page should load its first child page.
add_action( 'parse_request', 'check_for_redirect' );
function check_for_redirect( $query ) {
if( is_admin() ){
return;
}
if( isset($query->query_vars[ 'pagename' ]) ){
$pagename = $query->query_vars[ 'pagename' ];
@dboutote
dboutote / body_id.php
Last active August 29, 2015 14:23
Add an ID Attribute to WordPress Body Element
<?php
// Create a dynamic id on body elements
function get_body_id( $id = '' ) {
global $wp_query;
// Fallbacks
if ( is_front_page() ) $id = 'front-page';
if ( is_home() ) $id = 'blog';
if ( is_search() ) $id = 'search';
if ( is_404() ) $id = 'error404';
@dboutote
dboutote / google-img-map-link.php
Last active August 29, 2015 14:25
Builds A Link to Google Maps (for WordPress theme)
@dboutote
dboutote / hideemail.php
Created July 26, 2015 15:26
Hide email from Spam Bots using a shortcode. (WordPress theme)
<?php
/**
* Hide email from Spam Bots using a shortcode.
*
* @param array $atts Shortcode attributes. Not used.
* @param string $content The shortcode content. Should be an email address.
*
* @return string The obfuscated email address.
*/
function _ss_hide_email_shortcode( $atts , $content = null ) {
@dboutote
dboutote / bing-map-link.php
Last active August 29, 2015 14:25
Build a link to Bing Map (for WordPress Theme)
@dboutote
dboutote / google-map-link.php
Last active August 29, 2015 14:25
Build a link to Google Maps