Skip to content

Instantly share code, notes, and snippets.

View petertwise's full-sized avatar

Peter Wise petertwise

View GitHub Profile
@petertwise
petertwise / logged_in_active_subscribers_skip_oopspam_check.php
Last active September 15, 2024 19:21
OOPSpam Skip Certain User Roles
<?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"
}
}
@petertwise
petertwise / squarecandy-checkout-donation-mod.js
Last active September 3, 2024 16:11
GiveWP WooCommerce Checkout Donations - UI Modifications
( 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() {
@petertwise
petertwise / squarecandy-wc-status-change-logger.php
Last active August 23, 2024 22:34
Log WooCommerce status changes with stack trace, even when WP_DEBUG is off.
<?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 );
@petertwise
petertwise / staging-images-main-context.conf
Last active January 23, 2024 06:45
nginx use production media for staging
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;
}
@petertwise
petertwise / git-updater-ignore.php
Created January 11, 2024 03:17 — forked from afragen/git-updater-ignore.php
A plugin to ignore specific repositories from Git Updater
<?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
@petertwise
petertwise / squarecandy-hide-stream-activity-logger.php
Last active July 26, 2023 18:23
Hide Stream plugin from all users except one Admin
<?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
@petertwise
petertwise / plusminus.html
Last active July 14, 2023 03:56 — forked from Farmatique/gist:5c48d1d9b5744117a94901f6ed84f7b5
input[type="number"] plus/minus buttons
<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>
@petertwise
petertwise / widow-buster.php
Last active October 14, 2021 02:52
PHP widow buster function - eliminate a single word wrapping to a new line
<?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,
@petertwise
petertwise / acf-install-license
Last active August 16, 2024 11:07 — forked from polevaultweb/acf_pro_license_constant.php
Define the Advanced Custom Fields Pro license key with a constant
#!/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
@petertwise
petertwise / git-updater-upgrade
Last active May 27, 2021 19:26
Upgrade from github-updater 9.x to git-updater 10.x and git-updater-pro
#!/bin/bash
# Upgrade from github-updater 9.x to git-updater 10.x and git-updater-pro
# Instructions:
# 1. make sure you have WP CLI installed
# 2. install this file in /usr/local/bin or the executable path of your choice and make sure it has execute permissions
# 3. make a file called .gitupdater-download-link with the your personal download link and save it to /user/local/bin
# 4. make a file called .gitupdater-license-key with the your pro license key and save it to /user/local/bin
# 5. cd into your website's root dir and run `git-updater-upgrade`