Skip to content

Instantly share code, notes, and snippets.

View ejntaylor's full-sized avatar
🚢
Shipping

Elliot ejntaylor

🚢
Shipping
View GitHub Profile
@ejntaylor
ejntaylor / insert.php
Created November 9, 2013 09:09
ACF and Flexslider Repeater with Image
<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'); ?>
@ejntaylor
ejntaylor / flex-nav.js
Last active December 27, 2015 20:29
Trying to get .home-vid to slide and using LordZardeck's code to pause when video played. Used in Wordpress.
jQuery(function ($) {
$(window).load(function() {
$('.home-vid-old').flexslider(
{
animation: "fade",
controlNav: false,
directionNav: false,
@ejntaylor
ejntaylor / functions.php
Created November 11, 2013 16:19
Adds a unique menu for blog related pages
<?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;
}
@ejntaylor
ejntaylor / functions.php
Last active December 28, 2015 21:49
Shortcode to insert PHP & Create a Widget
// 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)
@ejntaylor
ejntaylor / functions.php
Created November 20, 2013 21:02
/Remove digg digg on woocommerce pages
// 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');
}
}
@ejntaylor
ejntaylor / gist:8096034
Last active January 1, 2016 05:08
List Categories within tag ** Need to replace Catgeory shortcode with another loop which filters products out which are not in current product_tag
<?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(
@ejntaylor
ejntaylor / functions.php
Created January 15, 2014 17:38
Remove Archive from Title
// 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();
@ejntaylor
ejntaylor / functions.php
Last active January 3, 2016 09:09
Canvas navigation move to right
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()
@ejntaylor
ejntaylor / custom.css
Last active August 29, 2015 13:57
CSS for Canvas breakpoints - retains full-width header
/* 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){
/*
*
@ejntaylor
ejntaylor / gist:9990392
Created April 5, 2014 10:56
For use on Woo Canvas, WooCommerce and Yoast SEO
// 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>');