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
/****************************************************************** | |
Site Name: | |
Author: | |
Stylesheet: Flexslider Stylesheet | |
******************************************************************/ | |
// Resets | |
.flex-container, |
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
/****************************************************************** | |
Site Name: | |
Author: | |
Stylesheet: Responsive Gravity Forms Styles | |
Usage: Uncheck box in Gravity Forms Settings to "Not" Output default CSS | |
******************************************************************/ |
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
/****************************************************************** | |
Site Name: | |
Author: | |
Stylesheet: Responsive WooCommerce Styles | |
******************************************************************/ | |
// Imports | |
@import "variables"; |
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', 'post_cat_taxonomy_cleanup', 11 ); | |
function post_cat_taxonomy_cleanup() { | |
global $wp_taxonomies; | |
$wp_taxonomies['category']->object_type = array_diff( $wp_taxonomies['category']->object_type, array( 'post' ) ); | |
} | |
add_action( 'init', 'post_tag_taxonomy_cleanup', 11 ); | |
function post_tag_taxonomy_cleanup() { | |
global $wp_taxonomies; | |
$wp_taxonomies['post_tag']->object_type = array_diff( $wp_taxonomies['post_tag']->object_type, array( 'post' ) ); |
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
/****************************************************************** | |
Site Name: | |
Author: | |
Stylesheet: WooCommerce Layout | |
******************************************************************/ | |
.woocommerce, .woocommerce-page { | |
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
jQuery(window).load(function() { | |
// Equal Height Divs - http://css-tricks.com/equal-height-blocks-in-rows/ | |
equalheight = function(container) { | |
var currentTallest = 0, | |
currentRowStart = 0, | |
rowDivs = [], | |
$el, | |
topPosition = 0; |
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 | |
/** | |
* Template Name: Site Map Page | |
* | |
* @package Scaffolding | |
* @since Scaffolding 1.1 | |
*/ | |
get_header(); |
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 | |
/** | |
* H1 Tag Template | |
* | |
* This is a tuckaway H1 tag for SEO purposes. | |
*/ | |
// Set Variables | |
$h1_field = 'h1_tag'; // the field name defined in acf | |
$default_posttype = 'News'; // ex. Posts or News |