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="home-slide flexslider"> | |
<?php if(get_field('home_slide_repeater')): ?> | |
<ul> | |
<?php while(has_sub_field('home_slide_repeater')): ?> | |
<li> | |
<?php $image = wp_get_attachment_image_src(get_sub_field('home_slide_image'), 'home-slide'); ?> |
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 main nav to the woo_header_inside hook unless blog page | |
function is_blog() { | |
if (is_home() || is_singular('post') || is_post_type_archive('post') || is_archive()) | |
return true; | |
else return false; | |
} | |
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
// shortcode - features | |
// shortcode implementation | |
function sc_features($atts) { | |
// turn on output buffering to capture script output | |
ob_start(); | |
// include file (contents will get saved in output buffer) |
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
// remove digg digg on woocommerce pages | |
add_action ('template_redirect','remove_dd_buttons'); | |
function remove_dd_buttons() { | |
if(is_product() ) { | |
remove_filter('the_excerpt', 'dd_hook_wp_content'); | |
remove_filter('the_content', 'dd_hook_wp_content'); | |
} | |
} |
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 $product_tag = (get_query_var('product_tag')) ? get_query_var('product_tag') : 1; ?> | |
<h1>Currently Browsing: <?php echo $product_tag; ?></h1> | |
<?php | |
$args = 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
// Remove Archive from Title | |
function woo_archive_title ( $before = '', $after = '', $echo = true ) { | |
global $wp_query; | |
if ( is_category() || is_tag() || is_tax() ) { | |
$taxonomy_obj = $wp_query->get_queried_object(); |
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
add_action( 'init', 'woo_custom_move_navigation', 10 ); | |
function woo_custom_move_navigation () { | |
// Remove main nav from the woo_header_after hook | |
remove_action( 'woo_header_after','woo_nav', 10 ); | |
// Add main nav to the woo_header_inside hook | |
add_action( 'woo_header_inside','woo_nav', 10 ); | |
} // End woo_custom_move_navigation() |
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
/* Header Items and Content Items and Footer Items*/ | |
#content.col-full, #header, .nav-cont, #wrapper, #footer-widgets { | |
margin-left: auto; | |
margin-right: auto; | |
} | |
@media only screen and (min-width: 960px){ | |
/* | |
* |
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
// Replace WooThemes Breadcrumbs with Yoast breadcrumbs | |
add_action( 'init', 'hh_breadcrumbs' ); | |
function hh_breadcrumbs() { | |
remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20 ); | |
add_action( 'woocommerce_before_main_content','hh_yoast_breadcrumb', 20, 0); | |
function hh_yoast_breadcrumb() { | |
if ( function_exists('yoast_breadcrumb') && !is_front_page() ) { | |
yoast_breadcrumb('<p class="breadcrumbs">','</p>'); |