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
<?php | |
add_filter('woocommerce_product_is_on_sale', function ($on_sale, $product) { | |
if ($product->is_type('variable') && (is_shop() || is_product() || is_product_category() || is_product_tag())) { | |
foreach ($product->get_children() as $variation_id) { | |
$variation = wc_get_product($variation_id); | |
if ($variation->is_on_sale()) { | |
return true; | |
} | |
} | |
} |
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-product-gallery__trigger { width: 80%; height: 80%; top: 0; left: 10%;} | |
.woocommerce-product-gallery__trigger, | |
.woocommerce-product-gallery__trigger:hover, | |
.woocommerce-product-gallery__trigger::before { background-color: transparent; } |
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 (max-width: 689.98px) { | |
.woo-listing-top .woocommerce-ordering select { | |
color: inherit; | |
width: inherit; | |
padding: 0 15px; | |
background-image: url("data:image/svg+xml,%3Csvg width='21' height='13' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.5.379L20.621 2.5 10.5 12.621.379 2.5 2.5.379l8 8z' fill='%234F5D6D' fill-rule='nonzero'/%3E%3C/svg%3E"); | |
} | |
.ct-sort-icon { | |
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-product-gallery__trigger::before { | |
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-6 -6 30 30'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001q.044.06.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1 1 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0'/%3E%3C/svg%3E%0A"); | |
} |
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 only screen and (max-width: 700px) { | |
.ct-dynamic-filter { | |
overflow-x: scroll; | |
flex-wrap: nowrap; | |
justify-content: left; | |
padding-bottom: 1rem; | |
} | |
.ct-dynamic-filter > * { | |
flex: 0 0 auto; |
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
.ct-card-variation-swatches .variations { align-items: center; } | |
.ct-card-variation-swatches .ct-variation-swatches { | |
overflow-x: auto; | |
scrollbar-width: thin; | |
padding-bottom: 10px; | |
justify-content: flex-start; | |
flex-wrap: nowrap; | |
max-width: 80%; | |
} |
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
<?php | |
add_filter( 'the_content', function ( $content ) { | |
if ( is_single() ) { | |
$blocks = parse_blocks( $content ); | |
$block_count = count( $blocks ); | |
$insert_before_block = 3; | |
$custom_hook_content = apply_filters( 'blocksy:before:certain:last:block', '' ); | |
if ( $block_count >= $insert_before_block ) { |
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
<?php | |
add_action('pre_get_posts', function($query) { | |
if ($query->is_main_query() && !is_admin() && $query->is_category()) { | |
$sticky_posts = get_option('sticky_posts'); | |
if ($sticky_posts) { | |
$cat_id = get_queried_object_id(); | |
$sticky_query = new WP_Query([ | |
'post__in' => $sticky_posts, | |
'cat' => $cat_id, | |
'posts_per_page' => -1, |
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
<?php | |
// https://woocommerce.github.io/code-reference/files/woocommerce-templates-archive-product.html | |
add_action('woocommerce_no_products_found', function () { | |
// Display the bestsellers | |
echo '<h2>Our Bestsellers</h2>'; | |
echo do_shortcode('[best_selling_products per_page="6" columns="3"]'); // https://woocommerce.com/document/woocommerce-shortcodes/products/ | |
// Display a button to go to the shop page | |
echo '<div class="ct-container">'; | |
echo '<a class="ct-button" href="' . esc_url(get_permalink(wc_get_page_id('shop'))) . '">All Products</a>'; |