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
//Super Anti-Youtube Embed | |
http://www.youtube.com/embed/HJSxwwZI4XI?rel=0&vq=hd720&version=3&theme=dark&modestbranding=1&showinfo=0&border=0&autohide=1&autoplay=1&controls=0&enablejsapi=1 | |
//Vimeo | |
http://player.vimeo.com/video/33110953?autoplay=1&byline=0&badge=0&portrait=0&title=0&color=EEEEEE |
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 | |
$start = "11:00 am"; | |
$end = "12:30 pm"; | |
$current_time = date('h:i a'); | |
$date1 = DateTime::createFromFormat('h:i a', $current_time); | |
$date2 = DateTime::createFromFormat('h:i a', $start); | |
$date3 = DateTime::createFromFormat('h:i a', $end); |
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
/*-----------------------------------------------------------------------------------*/ | |
// WooCommerce Compatibility | |
/*-----------------------------------------------------------------------------------*/ | |
// Add Theme Support for WC | |
add_theme_support( 'woocommerce' ); | |
// Wrap WC in native theme functions | |
remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10); | |
remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10); |
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 | |
/** | |
* Lightfast Child Theme | |
* | |
*/ | |
function st_remove_wrapper() { | |
// removes the opening div#wrap | |
remove_action('skeleton_header','skeleton_mainwrap_open'); |
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
function element_transport_theme_mods() { | |
global $wpdb; | |
$themedata = $wpdb->get_var($wpdb->prepare("SELECT option_value FROM $wpdb->options WHERE option_name = %s", 'element')); | |
if ($themedata) { | |
$wpdb->update( | |
$wpdb->options, // table | |
array( 'option_value' => $themedata ), // column => data | |
array( 'option_name' => 'elementchild' ) // where column | |
); |
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
function st_transport_theme_mods() { | |
global $wpdb; | |
$themetitle = 'synapse'; | |
$themedata = $wpdb->get_var($wpdb->prepare("SELECT option_value FROM $wpdb->options WHERE option_name = %s", $themetitle)); | |
if ($themedata) { | |
$wpdb->update( | |
$wpdb->options, // table | |
array( 'option_value' => $themedata ), // column => data | |
array( 'option_name' => $themetitle.'child' ) // where column |
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
function skeleton_header_open() { | |
echo '<div id="header">'; | |
echo '<div class="topbar">'; | |
// phone number | |
echo '<span class="tel">1.800.555.1212</span>'; | |
// search form | |
get_search_form(true); | |
echo '<ul class="header_social_icons">'; | |
// Add your social icons below | |
echo '<li><a href="http://twitter.com"><i class="fa fa-twitter"></i></a></li>'; |
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
// Enqueue the Slick slider CSS | |
function child_css() { | |
wp_enqueue_style('slick', get_stylesheet_directory_uri().'/slick/slick.css', array('style'), '1.0', 'screen, projection'); | |
wp_enqueue_style('slick-theme', get_stylesheet_directory_uri().'/slick/slick-theme.css', array('style'), '1.0', 'screen, projection'); | |
} | |
add_filter( 'add_stylesheets','child_css' ); | |
// Enqueue the Slick slider Javascripts | |
function child_scripts() { | |
wp_enqueue_script('slick', get_stylesheet_directory_uri()."/slick/slick.min.js",array('jquery'),'1.0',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
//on line #159 change: | |
// hook to add additional stylesheets from a child theme | |
echo apply_filters ('child_add_stylesheets',$stylesheets); | |
//to: | |
// hook to add additional stylesheets from a child theme | |
apply_filters ('child_add_stylesheets',$stylesheets); |
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
function site_header() { ?> | |
<div class="page-wrap"> | |
<div class="site-header"> | |
<div class="container"> | |
<div id="navtoggle"> | |
<a href="#"><span> </span><span> </span><span> </span></a> | |
</div> | |
<div id="tel"> | |
<a href="tel:+12056036118">205.603.6118</a> | |
</div> |