This file contains hidden or 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 | |
/* | |
* Add this snippet to your functions.php file | |
* Create a select field through ACF (can be used in flexible content, repeater, etc.) | |
* Leave the choices field blank in the ACF backend | |
* Add it to your page. | |
*/ | |
function acf_load_cpt_field_choices( $field ) { | |
// Reset choices |
This file contains hidden or 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 | |
$ctaLink = get_field('static_hero_cta_button_link'); | |
if (false !== strpos($ctaLink,'attachment_id')) { | |
$url = $ctaLink; | |
$url_parsed = parse_url($url); | |
parse_str($url_parsed['query'], $url_parts); | |
$attachmentID = $url_parts['attachment_id']; // attachment ID | |
$attachmentSrc = wp_get_attachment_url( $attachmentID ); // returns an array | |
$ctaLink = $attachmentSrc; | |
} |
This file contains hidden or 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
.tabs{ | |
margin: {top:40px;} | |
&:last-child{ | |
margin: {bottom:80px;} | |
} | |
h2{ | |
color: $color-1; | |
font: { | |
size: emCalc(36px); | |
} |
This file contains hidden or 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
if(!is_admin()){ | |
add_action('init', 'search_query_fix'); | |
function search_query_fix(){ | |
if(isset($_GET['s']) && $_GET['s']==''){ | |
$_GET['s']=' '; | |
} | |
} | |
} |
This file contains hidden or 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
<link href='http://fonts.googleapis.com/css?family=Lato:900' rel='stylesheet' type='text/css'> | |
<div class="blocks"> | |
<a href="#"> | |
<div class="block"> | |
<div class="block--norm"> | |
<h2>Home</h2> | |
</div> | |
<div class="block--hover"> | |
<h2>Home</h2> |
This file contains hidden or 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
google.maps.event.addDomListener(window, 'resize', function() { | |
map.setCenter(YOUR_LAT_LONG_VAR_HERE); | |
}); |
This file contains hidden or 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
<link href='http://fonts.googleapis.com/css?family=Arbutus+Slab' rel='stylesheet' type='text/css'> | |
<article class="focus__list"> | |
<div class="focus__area--wrap"> | |
<div class="focus__area"> | |
<div class="focus__icon">&</div> | |
<div class="focus__title"> | |
Ampersand | |
</div> | |
</div> <!-- //__area --> |
This file contains hidden or 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
<h2 class="slide-trigger">Super Neat Menu! <span></span></h2> | |
<nav role='navigation' class="nav"> | |
<ul class="menu"> | |
<li><a href="#">Inky</a></li> | |
<li><a href="#">Bink</a></li> | |
<li><a href="#">A Bottle</a></li> | |
<li><a href="#">Of Ink</a></li> | |
<li><a href="#">The Cork</a></li> |
This file contains hidden or 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="container"> | |
<div class="progress_wrapper pink_blue"> | |
<span class="pink_blue tooltip">0%</span> | |
<progress max="100" value="0" data-value="60" class="pink_blue"> | |
</progress> | |
</div> | |
<div class="progress_wrapper pink_blue"> | |
<span class="pink_blue tooltip">0%</span> | |
<progress max="100" value="0" data-value="80" class="pink_blue"> | |
</progress> |
NewerOlder