This file contains hidden or 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
body .main-navigation ul li a:before { | |
content: "\f192"; | |
} |
This file contains hidden or 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
.home ul.products li.product-category .toyshop-product-title, | |
.home ul.products li.product .toyshop-product-title h2, | |
.home ul.products li.product .toyshop-product-title .woocommerce-loop-product__title{ | |
display: none; | |
} |
This file contains hidden or 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( 'after_setup_theme', 'custom_woocommerce_support' ); | |
function custom_woocommerce_support() { | |
remove_theme_support( 'wc-product-gallery-zoom' ); | |
remove_theme_support( 'wc-product-gallery-lightbox' ); | |
} |
This file contains hidden or 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
#header .mini-cart { | |
display: none; | |
} |
This file contains hidden or 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
@media screen and (min-width: 768px) { | |
.woocommerce-active .site-header .site-header-cart { | |
right: 2.617924em; | |
} | |
} |
This file contains hidden or 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
.forest { | |
display: none; | |
} |
This file contains hidden or 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.single-product .group_table { | |
display: none; | |
} |
This file contains hidden or 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
/** | |
* Alters the output of the homepage product categories on the Storefront theme | |
* Affects the storefront_product_categories_args filter in /inc/structure/template-tags.php | |
*/ | |
function rk_display_four_home_product_categories( $args ) { | |
// Sets the categories to be ordered by date, instead of name | |
$args['orderby'] = 'date'; |
This file contains hidden or 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_filter( 'storefront_product_categories_args', 'wc_ninja_swc_homepage_category_limit', 25 ); | |
function wc_ninja_swc_homepage_category_limit() { | |
return 20; | |
} |
This file contains hidden or 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
body #masthead:after { | |
background: none; | |
} |