If you do not have a preferred project management tool, we will provide you with a login for ours where you will be able to see the status of the project down to the specific task, so you will always be kept up to date. We’ll be relying on you to participate by answering our questions, stating your approval, requesting changes, and verifying completeness through the tool as well. We ask for a one business day turnaround time on responses so we can keep things moving along at a pace that will allow us to hit the milestones we decided on together. To keep the project organised and the management of it easier, we prefer not to communicate any of the information stated above over ordinary email.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Custom Post Types | |
* Icon reference: https://developer.wordpress.org/resource/dashicons/#editor-textcolor | |
* Uncomment add_action to enable | |
*/ | |
// add_action('init', 'origin_cpts'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Shortcode for getting ACF option field | |
* Usage: | |
* [options field="tel"] | |
*/ | |
function origin_sc_acf_option_field( $atts ) { | |
extract( shortcode_atts( array( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"config": { | |
"remove-empty-rulesets": true, | |
"always-semicolon": true, | |
"color-case": "lower", | |
"block-indent": "\t", | |
"color-shorthand": false, | |
"element-case": "lower", | |
"eof-newline": true, | |
"leading-zero": true, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Thanks to: https://gist.github.com/jdbartlett/444295 | |
# Ignore everything in the root except the "wp-content" directory. | |
/* | |
!.gitignore | |
!wp-content/ | |
# Ignore everything in the "wp-content" directory, except the "plugins" and "themes" directories. | |
wp-content/* | |
!wp-content/plugins/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ignore everything in this directory | |
/* | |
# but not these | |
!.gitignore | |
!assets/ | |
!core/ | |
!_SASS/ | |
!_JS/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="grid container"> | |
<div class="unit half">.unit.half</div> | |
<div class="unit half">.unit.half</div> | |
<div class="unit one-third">.unit.one-third</div> | |
<div class="unit one-third">.unit.one-third</div> | |
<div class="unit one-third">.unit.one-third</div> | |
<div class="unit one-quarter">.unit.one-quarter</div> | |
<div class="unit one-quarter">.unit.one-quarter</div> | |
<div class="unit one-quarter">.unit.one-quarter</div> | |
<div class="unit one-quarter">.unit.one-quarter</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function shortcodeButton( $atts, $content = null ) { | |
extract( shortcode_atts( array( | |
'link' => 'contact/', | |
'colour' => 'green' | |
), $atts ) ); | |
return '<a href="' . "{$link}" . '" class="btn btn-' . "{$colour}" . '">' . $content . ' </a>'; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function shortcodeButton( $atts, $content = null ) { | |
return '<a href="' . get_bloginfo('url') . '/contact/" class="btn">' . $content .' </a>'; | |
} | |
add_shortcode('button', 'shortcodeButton'); |
NewerOlder