Skip to content

Instantly share code, notes, and snippets.

@dherbold
dherbold / .gitignore_wordpress
Created February 20, 2022 20:54 — forked from gavin-hall/.gitignore_wordpress
Template .gitignore for git-managed WordPress projects
# This is a template .gitignore file for git-managed WordPress projects.
#
# Fact: you don't want WordPress core files, or your server-specific
# configuration files etc., in your project's repository. You just don't.
#
# Solution: stick this file up your repository root (which it assumes is
# also the WordPress root directory) and add exceptions for any plugins,
# themes, and other directories that should be under version control.
#
# See the comments below for more info on how to add exceptions for your
@dherbold
dherbold / degree.tpl.php
Created February 16, 2019 00:09
Degree program decider
<?php
/**
* @file
* Bartik's theme implementation to display a single Drupal page.
*
* The doctype, html, head, and body tags are not in this template. Instead
* they can be found in the html.tpl.php template normally located in the
* core/modules/system directory.
*
<?php
/**
* @file
* Main view template.
*
* Variables available:
* - $classes_array: An array of classes determined in
* template_preprocess_views_view(). Default classes are:
* .view
@dherbold
dherbold / wordspark-hp-full-width
Created October 2, 2017 18:11
ASU Standards wordpress theme bootstrap based home page layout.
<?php
/**
* Template Name: Home Page
*
* @package asu-wordpress-web-standards-theme
*/
get_header();
$custom_fields = get_post_custom();
@dherbold
dherbold / wp-config-pantheon.php
Created October 2, 2017 18:05
require https before bootstrap + redirect to naked domain
// Redirect all traffic to non-www. For example yoursite.com
if (isset($_SERVER['PANTHEON_ENVIRONMENT']) &&
($_SERVER['PANTHEON_ENVIRONMENT'] === 'live') &&
// Check if Drupal or WordPress is running via command line
(php_sapi_name() != 'cli')) {
if ($_SERVER['HTTP_HOST'] == 'www.cast.asu.edu') {
header('HTTP/1.0 301 Moved Permanently');
header('Location: http://cast.asu.edu'.$_SERVER['REQUEST_URI']);
exit();
}
@dherbold
dherbold / track-target-blank-links.js
Created October 1, 2017 18:00
outbound link tracker js
@dherbold
dherbold / innovationchild_preprocess.php
Created October 1, 2017 17:59
Various pre processess
<?php
/**
* @file
* Primary pre/preprocess functions and alterations.
*/
function innovationchild_preprocess_page(&$variables) {
if (isset($variables['node']->type)) {
// If the content type's machine name is "my_machine_name" the file
// name will be "page--my-machine-name.tpl.php".
@dherbold
dherbold / fieldable-panels-pane--123--full.tpl.php
Created October 1, 2017 17:51
per page education.asu.edu header addition of USNews graphic. Template override to target phd program pages to display US News Best Grad School graphic.
<div class="<?php print $classes; ?>"<?php print $attributes; ?>>
<style>
.usnewscontainer {
min-height: 200px;
}
.usnewscontainer h1 {
display: inline-block;
padding: 15px 0 0 30px;
}
.usnewsbannerbadge {
@dherbold
dherbold / bash_profile
Last active October 2, 2017 18:15
Simple bash tweaks for better living.
cd /Users/david/Sites
# Git branch in prompt.
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
#lazygit "My commit msg" http://stackoverflow.com/questions/19595067/git-add-commit-and-push-commands-in-one
function lg() {
@dherbold
dherbold / panth-env-track.php
Last active October 1, 2017 17:57
set unique keys and states (etc) per Pantheon environment detection
if (defined('PANTHEON_ENVIRONMENT')) {
if (PANTHEON_ENVIRONMENT == 'dev') {
// Google Analytics.
$conf['googleanalytics_account'] = 'UA-83305450-1';
// SalesForce Middleware
$conf['asu_rfi_form_auth_key'] = 'G8SbroXqxteS6BAjJcjKkic7dUahiWyN';
}
else if (PANTHEON_ENVIRONMENT == 'test') {
// Google Analytics.
$conf['googleanalytics_account'] = 'UA-78103002-1';