Skip to content

Instantly share code, notes, and snippets.

View bezierer's full-sized avatar
🟢
Open to work - hit me up 📩

Cameron Campbell bezierer

🟢
Open to work - hit me up 📩
View GitHub Profile
AK
AL
AZ
AR
CA
CO
CT
DC
DE
FL
@bezierer
bezierer / gravity-forms-no-store.md
Last active July 25, 2019 18:34
Stop Gravity Forms from storing entries in the database.
/*
  Stop Gravity Forms from storing entries in the database.
  Replace '2' with your form ID.
*/
add_action( 'gform_after_submission_2', 'site_name_remove_form_entry' );
function site_name_remove_form_entry( $entry ) {
    GFAPI::delete_entry( $entry['id'] );
}
@bezierer
bezierer / canadian-abr
Last active July 30, 2019 18:41
Canadian Province Abbreviations
AB
BC
MB
NB
NL
NS
NT
NU
ON
PE
@bezierer
bezierer / Hyper settings
Created April 15, 2020 18:47
My settings for the Hyper terminal
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: 'stable',