Skip to content

Instantly share code, notes, and snippets.

View bgallagh3r's full-sized avatar

Brian Gallagher bgallagh3r

View GitHub Profile
.pulse-button span:after{
content: '';
width: 30px; height: 30px;
border-radius: 100%;
border: 6px solid #673a9b;
position: absolute;
z-index: -1;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
@bgallagh3r
bgallagh3r / functions.php
Created December 11, 2020 19:34 — forked from kloon/functions.php
WooCommerce 3.2: Add resend admin order email option that was removed
<?php
/**
* This adds back an option to resend the admin new order email from the order edit screen that was removed in WooCommerce 3.2
*/
/**
* Filter to add a new menu to the dropdown
*
* @param array $actions
* @return array
@bgallagh3r
bgallagh3r / wp-dashboard.php
Created August 18, 2015 15:47
Set WordPress Dashboard to Single Column
// force one-column dashboard
function shapeSpace_screen_layout_columns($columns) {
$columns['dashboard'] = 1;
return $columns;
}
add_filter('screen_layout_columns', 'shapeSpace_screen_layout_columns');
function shapeSpace_screen_layout_dashboard() { return 1; }
add_filter('get_user_option_screen_layout_dashboard', 'shapeSpace_screen_layout_dashboard');
@bgallagh3r
bgallagh3r / hosts.ps1
Created December 10, 2014 00:43
Powershell script to add/edit/list/remove entries from the hosts file.
Set-ExecutionPolicy RemoteSigned
# Edit HOSTS file Script
# Brian Gallagher (http://briangallagher.me)
#
# If you use Sublime text, and don't have an alias for it yet, uncomment the line below and change the path to ST
#Set-Alias st 'C:\Program Files\Sublime Text 3\sublime_text.exe'
$file = join-path -path $env:SystemRoot -childpath "System32\drivers\etc\hosts"
#!/bin/bash
# Installation script for a Wordpress 3.0 website on Ubuntu 10.04
#
# Josh Kersey
# Created: May 15, 2012
# Last Update: June 13, 2012
# get setup parameters
echo "apache vhost name (one word):"
@bgallagh3r
bgallagh3r / mirc.ini
Last active April 8, 2018 01:51 — forked from liamja/mirc.ini
[colors]
n5=Monokai,0,4,4,4,2,3,4,3,6,6,3,1,2,2,5,1,5,4,2,4,0,0,1,0,1,14,5,0,0,1
[palettes]
n5=2238503,15923448,15718758,3072678,7481081,12767183,2070525,26832,1632504,57344,94740,16776960,16515072,16711935,8355711,13816530
@bgallagh3r
bgallagh3r / QueryBuilder.php
Created September 11, 2014 22:30
A helper class to build prepared statements using WordPress's WPDB class.
<?php
/**
* A helper class to allow you to easily build prepared statements
* for use with Wordpress's WPDB class.
*
* Usage: $this->orderBy('column', 'asc')->limit(50)->getQuery();
*/
class QueryBuilder {
@bgallagh3r
bgallagh3r / FeatureContext.php
Last active April 8, 2018 01:51
Behat FeatureContext Bootstrap for use in Laravel.
<?php
// Put this inside of your featurecontext class
// This assumes the FeatureContext.php class is within app/tests/behat/features/bootstrap
// Another thing to note... I'm using sqlite in memory for these tests,
// so I'm not worried about the db at the end of the run, just the install and start.
class FeatureContext extends BehatContext //or MinkContext if using Mink
{
@bgallagh3r
bgallagh3r / template
Last active April 8, 2018 01:51 — forked from gistwebdev/template
Updated to work with Apache 2.4 (swap order/allow for Required all granted)
<VirtualHost *:80>
ServerAdmin template.email
ServerName template.url
DocumentRoot template.webroot
<Directory />
Options FollowSymLinks
AllowOverride All
Require all granted
</Directory>
@bgallagh3r
bgallagh3r / vhost
Last active April 8, 2018 01:51 — forked from gistwebdev/vhost
Fix for Apache 2.4 (required adding .conf extensions)
#!/bin/bash
#
# Display usage info
vhost-usage() {
cat <<"USAGE"
Usage: vhost [OPTIONS] <name>
-h|--help this screen
-pub to create the webhost root in ~/www/name/public/
-url to specify a local address, default is http://name.local