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 | |
//* Remove the post meta function for front page only | |
remove_action( 'genesis_entry_footer', 'genesis_post_meta' ); | |
//* Add support for Genesis Grid Loop | |
remove_action( 'genesis_loop', 'genesis_do_loop' ); | |
add_action( 'genesis_loop', 'child_grid_loop_helper' ); | |
function child_grid_loop_helper() { | |
if ( function_exists( 'genesis_grid_loop' ) ) { |
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 header ID for backtotop | |
add_filter('genesis_attr_site-header','mytheme_header_id',1); | |
function mytheme_header_id($atts) { | |
$atts['id'] = "header"; | |
return $atts; | |
} | |
// back to top link |
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
:after { | |
content:"."; | |
display:block; | |
height:0; | |
clear:both; | |
visibility:hidden; | |
} |
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
Choose "location" from the search bar below and type your location in order to find Bushcare sites near you. | |
The default distance is 15km, but you can specify your own. | |
<div id="map-results" class="acf-map"></div> | |
[wp-ultimate-search-bar] | |
[wp-ultimate-search-results] |
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 | |
add_action('gform_after_submission_14', 'reformat_multiselect', 10, 2); | |
function reformat_multiselect($entry, $form) { | |
$post_id = $entry['post_id']; | |
$selects = array( | |
'custom_field1' => 'ACF_field_key', | |
'custom_field2' => 'ACF_field_key', | |
'custom_field3' => 'ACF_field_key' |
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="blue"> | |
YOUTUBE_URL | |
<p>Caption goes here.</p> | |
</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
<ul> | |
<li><a href="#a">A</a></li> | |
<li><a href="#b">B</a></li> | |
<li><a href="#c">C</a></li> | |
<li><a href="#d">D</a></li> | |
<li><a href="#e">E</a></li> | |
<li><a href="#f">F</a></li> | |
<li><a href="#g">G</a></li> | |
<li><a href="#h">H</a></li> | |
<li><a href="#i">I</a></li> |