NOTE I now use the conventions detailed in the SUIT framework
Used to provide structural templates.
Pattern
t-template-name
NOTE I now use the conventions detailed in the SUIT framework
Used to provide structural templates.
Pattern
t-template-name
| add_filter( 'woocommerce_billing_fields', 'custom_woocommerce_billing_fields' ); | |
| function custom_woocommerce_billing_fields( $fields ) { | |
| // Over-ride a single label | |
| $fields['billing_first_name']['label'] = 'Your label'; | |
| // Over-ride a single required value | |
| $fields['billing_first_name']['required'] = false; |
| <!-- Prevent FOUC (flash of unstyled content) - http://johnpolacek.com/2012/10/03/help-prevent-fouc/ --> | |
| <style type="text/css"> | |
| .no-fouc {display: none;} | |
| </style> | |
| <script type="text/javascript"> | |
| document.documentElement.className = 'no-fouc'; | |
| // add to document ready: $('.no-fouc').removeClass('no-fouc'); | |
| </script> |
| #!/bin/bash | |
| # From http://tech.serbinn.net/2010/shell-script-to-create-ramdisk-on-mac-os-x/ | |
| # | |
| ARGS=2 | |
| E_BADARGS=99 | |
| if [ $# -ne $ARGS ] # correct number of arguments to the script; | |
| then |
| /** | |
| * Rename Posts in admin menu | |
| * | |
| */ | |
| new dhf_rename_posts('News'); | |
| class dhf_rename_posts | |
| { | |
| private $name; |
| <html> | |
| <head> | |
| <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script> | |
| </head> | |
| <body> | |
| <iframe id="frame" style="width: 250px; border: solid 1px red;" ></iframe> | |
| <script type="text/javascript"> | |
| var elFrame = $('#frame')[0]; | |
| $(elFrame.contentWindow).resize(function() { | |
| $(window).trigger('zoom'); |
| /* @include font-face(SourceSansPro, '/fonts/Source_Sans_Pro/SourceSansPro-Regular'); */ | |
| @font-face { | |
| font-family: SourceSansPro; | |
| font-weight: normal; | |
| font-style: normal; | |
| src: url(/assets/Source_Sans_Pro/SourceSansPro-Regular.eot); | |
| src: url(/assets/Source_Sans_Pro/SourceSansPro-Regular.eot?#iefix) format("embedded-opentype"), | |
| url(/assets/Source_Sans_Pro/SourceSansPro-Regular.woff) format("woff"), | |
| url(/assets/Source_Sans_Pro/SourceSansPro-Regular.ttf) format("truetype"), |
| #!/usr/bin/ruby | |
| # Create display override file to force Mac OS X to use RGB mode for Display | |
| # see http://embdev.net/topic/284710 | |
| require 'base64' | |
| data=`ioreg -l -d0 -w 0 -r -c AppleDisplay` | |
| edids=data.scan(/IODisplayEDID.*?<([a-z0-9]+)>/i).flatten | |
| vendorids=data.scan(/DisplayVendorID.*?([0-9]+)/i).flatten |
| ' http://support.microsoft.com/kb/291296/en-us | |
| ' http://superuser.com/questions/130592/how-do-you-force-excel-to-quote-all-columns-of-a-csv-file | |
| ' - change integer to long indexing | |
| ' http://stackoverflow.com/questions/2524703/save-text-file-utf-8-encoded-with-vba | |
| ' - output utf8 content | |
| Sub QuoteCommaExport() | |
| ' Dimension all variables. | |
| Dim DestFile As String | |
| Dim FileNum As Integer |