View logo.css
.site-logo { | |
grid-area: site-title !important; | |
} | |
@media only screen and (min-width: 560px) { | |
.site-header .site-title { | |
align-self: center !important; | |
margin-left: 100px; | |
} | |
} |
View covid-notice.css
.covid-menu { | |
background-color: yellow; | |
} | |
.covid-menu a { | |
color: black !important; | |
} |
View woocommerce.php
<?php | |
/** | |
* Workaround to prevent is_shop() from failing due to WordPress core issue | |
* | |
* @link https://core.trac.wordpress.org/ticket/21790 | |
* @param array $args infinite scroll args. | |
* @return array infinite scroll args. | |
*/ | |
function _s_woocommerce_is_shop_page() { | |
global $wp_query; |
View functions.php
<?php | |
/** | |
* Custom render function for Infinite Scroll. | |
*/ | |
function _s_infinite_scroll_render() { | |
if ( class_exists( 'WooCommerce' ) && ( is_shop() || is_product_taxonomy() || is_product_category() || is_product_tag() ) ) { | |
_s_woocommerce_product_columns_wrapper(); | |
woocommerce_product_loop_start(); | |
} |
View featured-slider.js
jQuery( window ).load( function() { | |
if ( 'true' == woo_localized_data.slideshow ) { woo_localized_data.slideshow = true; } else { woo_localized_data.slideshow = false; } | |
if ( 'true' == woo_localized_data.directionNav ) { woo_localized_data.directionNav = true; } else { woo_localized_data.directionNav = false; } | |
if ( 'true' == woo_localized_data.controlNav ) { woo_localized_data.controlNav = true; } else { woo_localized_data.controlNav = false; } | |
if ( 'true' == woo_localized_data.pauseOnHover ) { woo_localized_data.pauseOnHover = true; } else { woo_localized_data.pauseOnHover = false; } | |
if ( 'true' == woo_localized_data.pauseOnAction ) { woo_localized_data.pauseOnAction = true; } else { woo_localized_data.pauseOnAction = false; } | |
if ( 'true' == woo_localized_data.touch ) { woo_localized_data.touch = true; } else { woo_localized_data.touch = false; } | |
if ( 'true' == woo_localized_data.smoothHeight ) { woo_localized_data.smoothHeight = true; } else { woo_localized_data.smoothHeight = f |
View wooimage-override.php
<?php | |
/* | |
Plugin Name: woo_image Override | |
Plugin URI: http://woothemes.com | |
Description: Override for the woo_image() function in the WooFramework. This will force the active theme to use native WordPress functions for image handling. | |
Author: Jeffikus | |
Version: 1.0.0 | |
Author URI: http://woothemes.com | |
*/ |
View gist:b73ea70380ad6c29aed8241c726bb5d5
function _rsp_disable_jetpack_infinite_scroll_conditionally() { | |
if ( true === is_woocommerce() ) { | |
remove_theme_support( 'infinite-scroll' ); | |
} | |
} | |
add_action( 'template_redirect', '_rsp_disable_jetpack_infinite_scroll_conditionally', 9 ); |
View testimonials.css
/** | |
* Integration styles | |
*/ | |
@-webkit-keyframes spin-360 { | |
from { | |
-webkit-transform: rotate(0); | |
-moz-transform: rotate(0); | |
-ms-transform: rotate(0); | |
-o-transform: rotate(0); | |
transform: rotate(0); |
View markup.php
<li id="slide-5261" class="slide slide-number-1 flex-active-slide" style="width: 100%; float: left; margin-right: -100%; position: relative; opacity: 1; display: block; z-index: 2;"> | |
<section class="entry col-full"> | |
<p>This is a custom post type slide. Aliquam erat volutpat. Vivamus eget mi velit, sed convallis tellus. Suspendisse sit amet lacinia nisl. Nam tempus mi sed odio fringilla bibendum. Vivamus nisl ipsum, imperdiet eu euismod a, tincidunt aliquam leo. Praesent dolor est, dignissim id placerat id, cursus id diam.</p> | |
</section> | |
</li> |
View functions.php
<?php | |
add_filter( 'woo_template_parts', 'idx_search_fix', 1 ); | |
function idx_search_fix( $templates ) { | |
$options = get_option('fmc_settings'); | |
$page_id = absint( $options['destlink'] ); | |
if ( is_page( $page_id ) && isset( $templates[2] ) ) { | |
unset($templates[2]); | |
$templates = array_values($templates); | |
} | |
return $templates; |
NewerOlder