This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: WP Total Disk Size Alert | |
Description: Alerts when the total size of the WordPress installation exceeds a given size. | |
Version: 1.0.0 | |
Author: Square Candy | |
* Defaults to a 10GB limit | |
* Defaults to sending the alert to the site admin email | |
* Sends the alert when the total size is within 1GB of the limit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'oopspam_check_for_spam', 'logged_in_active_subscribers_skip_oopspam_check', 99 ); | |
function logged_in_active_subscribers_skip_oopspam_check() { | |
// if the user has active-subscriber role, pass the check automatically | |
// https://wordpress.stackexchange.com/a/5048/41488 | |
$user = wp_get_current_user(); | |
if ( $user && isset( $user->roles ) && in_array( 'active-subscriber', (array) $user->roles ) ) { | |
return 0; // zero spam score means "never block due to being spam" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
( function( $ ) { | |
$( document ).ready( function() { | |
// Checkout Donation Add On | |
function showHideAddDonationButton() { | |
if ( ! $( '.give-wc-form-selector' ).is( ':checked' ) ) { | |
$( '.give-wc-update-donations' ).hide(); | |
} else { | |
$( '.give-wc-update-donations' ).show(); | |
} | |
setTimeout( function() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: SquareCandy Status Change Logger for WooCommmerce | |
* Description: Log WooCommerce status changes with stack trace, even when WP_DEBUG is off. | |
* Author: squarecandy | |
* License: GNU General Public License v3 or later | |
* License URI: http://www.gnu.org/licenses/gpl-3.0.html | |
*/ | |
add_action( 'woocommerce_order_status_changed', 'squarecandy_status_change_logger', 999, 4 ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (!-f $request_filename){ | |
set $rule_0 1$rule_0; | |
} | |
if ($rule_0 = "1"){ | |
rewrite ^/wp-content/uploads/(.*)$ https://example.com/wp-content/uploads/$1 last; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: Git Updater Ignore | |
* Plugin URI: https://gist.github.com/afragen/414612961ac500b652862096a54d62d7 | |
* Description: This plugin is used to set Git Updater to ignore specific repository slugs. | |
* Version: 0.3 | |
* Author: Andy Fragen | |
* License: MIT | |
* Requires at least: 5.2 | |
* Requires PHP: 5.6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Square Candy Hide Stream (activity monitor plugin) | |
Plugin URI: https://gist.github.com/petertwise/5468e4d793c7ad89a32cb8e27de8ae3c | |
Version: 1.0 | |
Author: Square Candy | |
Author URI: https://squarecandydesign.com | |
License: GPLv2 | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="field1"> | |
<button type="button" id="sub" class="sub">-</button> | |
<input type="text" id="1" value="0" class="field" /> | |
<button type="button" id="add" class="add">+</button> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function widow_buster( $text, $min_words = 3, $max_chars = 16 ) { | |
$words = explode( ' ', $text ); | |
$word_count = count( $words ); | |
$char_length = strlen( $words[ $word_count - 2 ] ) + strlen( $words[ $word_count - 1 ] ); | |
// if our minimum word count and maximum character count are met, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Setup ACF Pro to use a license key in wp-config | |
# | |
# 1. Place your license key in a file called .acf-license-key somewhere your ssh user has access to it. | |
# Default is in your home directory: ~/.acf-license-key | |
# Change the setting below if you need to put it somewhere else | |
# 2. install this file in /usr/local/bin or someplace in your PATH | |
# 3. make sure you have WP CLI installed | |
# 4. run acf-install-license from the root of your wordpress install |
NewerOlder