Skip to content

Instantly share code, notes, and snippets.

View jondcampbell's full-sized avatar

Jon Campbell jondcampbell

View GitHub Profile
@jondcampbell
jondcampbell / functions.php
Created April 10, 2018 23:11
WooCommerce order email billing country
/*
* Let's add some more information to the customer details block in admin emails
* This particular example adds the billing country
*/
function mysite_filter_woocommerce_email_customer_details_fields( $fields, $sent_to_admin, $order ) {
if ( $order->billing_country ) {
$fields['billing_country'] = array(
'label' => __( 'Country', 'woocommerce' ),
'value' => WC()->countries->countries[ $order->billing_country ],
@jondcampbell
jondcampbell / functions.php
Created April 25, 2018 23:16
WordPress log anything
function logger($log){
if ( is_array( $log ) || is_object( $log ) ) {
error_log( print_r( $log, true ) );
} else {
error_log( $log );
}

Familiar Tools

A way for me to remember what my go-to libraries and utilities are.

PHP

Working with APIs

  • HTTP Requests - Guzzle
  • Logging - Monolog

JavaScript

VueJS

@jondcampbell
jondcampbell / class-cron-pull.php
Created February 26, 2019 06:19
WordPress Cron running in a php class on a custom schedule
<?php namespace MyProject;
/**
* Cron Pull
*
* Cron functionality for pulling data on a regular basis
*
* @package MyProject
*/
use WP_Query;
@jondcampbell
jondcampbell / functions.php
Created August 14, 2020 16:36
Limit length of first name field in Gravity Forms. Applies to ALL FORMS.
add_filter( 'gform_field_validation', 'kuztek_first_name_validation', 10, 4 );
function kuztek_first_name_validation( $result, $value, $form, $field ) {
$first_name_max_length = 10;
$first_name = rgar( $value, $field->id . '.3' );
if ( $result['is_valid'] && 'name' === $field->type && strlen( $first_name ) > $first_name_max_length ) {
$result['is_valid'] = false;
$result['message'] = 'Please enter a first shorter name';
}
return $result;
}
@jondcampbell
jondcampbell / class-wc-emails.php
Created September 23, 2020 18:50
low stock notification change
/**
* Determine if the current product should trigger a low stock notification
*
* @param int $product_id - The low stock product id
*
* @since 4.4.0
*/
if ( false === apply_filters( 'woocommerce_should_send_low_stock_notification', true, $product->get_id() ) ) {
return;
}