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
.voucher-fields input[type='text'], .voucher-fields input[type='email'], .voucher-fields textarea { | |
background: #000; | |
border: none; | |
color: #fff; | |
} |
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
ul.brands { | |
float: left; | |
width: 95%; | |
padding: 0.5em 0 1.5em; | |
min-height: 75px; | |
border-bottom: 3px double #ccc; | |
} | |
ul.brands li { | |
float: left; |
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 new_testimonial_title( $new_title ) { | |
// Make sure we limit this to the Testimonials post type | |
if ( 'testimonial' == get_post_type() ) { | |
$post_type_object = get_post_type_object( get_query_var( 'post_type' ) ); | |
$title = $post_type_object->labels->name; | |
return $title; | |
} | |
} | |
add_filter( 'get_the_archive_title', 'new_testimonial_title' ); |
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-account .woocommerce-MyAccount-navigation-link--downloads { | |
display: none; | |
} |
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
.shop_table dl.variation dt { | |
margin-right: 5px; | |
float: left; | |
padding-top: 0.5em; | |
} | |
.shop_table dl.variation dd { | |
margin-right: 10px; | |
display: block; | |
clear: both; |
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
/* Hide WooCommerce Stripe credit card thumbnails that's unavailable in Australia */ | |
.woocommerce-checkout img[src*="discover"], | |
.woocommerce-checkout img[src*="jcb"], | |
.woocommerce-checkout img[src*="diner"] { | |
display: none; | |
} |
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
.main-navigation ul li.smm-active ul.sub-menu li a:not(.button) { | |
color: red; | |
} | |
.main-navigation ul li.smm-active ul.sub-menu li .sub-menu a:not(.button) { | |
color: blue; | |
} |
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
.star-rating:before, | |
.star-rating span:before{ | |
letter-spacing: inherit !important; | |
} |
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
// Hide native search bar | |
remove_action( 'storefront_header', 'storefront_product_search', 40 ); | |
// Show "Product Search" search bar | |
add_action( 'storefront_header', 'storefront_predictive_search', 40 ); | |
function storefront_predictive_search() { | |
echo do_shortcode('[woocommerce_product_search]'); | |
} |
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
#payment .payment_methods .payment_method_paypal li img { | |
width: 319px; | |
height: 110px; | |
max-height: 110px; | |
} |
OlderNewer