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', 'tokopress_childtheme_setup_image_size', 20 ); | |
function tokopress_childtheme_setup_image_size() { | |
// imgae size | |
add_image_size( 'blog-thumbnail', 400, 200, 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
@media screen and (max-width: 768px) { | |
.woocommerce ul.products.product-category li.product .add-to-cart-loop-wrap, .woocommerce-page ul.products.product-category li.product .add-to-cart-loop-wrap { | |
opacity: 1; | |
background: none; | |
} | |
.woocommerce ul.products.product-category li.product .add-to-cart-loop-wrap .detail_button_loop, .woocommerce-page ul.products.product-category li.product .add-to-cart-loop-wrap .detail_button_loop { | |
opacity: 1; | |
transform: none; | |
font-size: 16px; | |
background: #fff !important; |
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
.blog-single .col-md-9.col-md-push-3, .blog-single .col-md-3.col-md-pull-9 { | |
float: none; | |
width: 100%; | |
left: auto; | |
right: auto; | |
} | |
.blog-single .post-summary { | |
border: 0; | |
padding: 0; | |
} |
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: 460px) { | |
.woocommerce ul.products li.product.product-hover .add-to-cart-loop-wrap, .woocommerce-page ul.products li.product.product-hover .add-to-cart-loop-wrap { | |
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 (max-width: 460px) { | |
.woocommerce[class*=columns-] ul.products li.product, .woocommerce-page[class*=columns-] ul.products li.product { | |
width: 50% !important; | |
} | |
} |
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( 'get_the_terms', 'tokopress_custom_exclude_event_categories_single', 10 ); | |
function tokopress_custom_exclude_event_categories_single( $terms ) { | |
$exclude = array( 261, 262 ); | |
if ( !is_admin() && !empty( $terms ) ) { | |
foreach ( $terms as $key => $term ) { | |
if ( $term->term_id && in_array( $term->term_id, $exclude ) ) { | |
unset( $terms[$key] ); | |
} | |
} | |
} |
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: 700px) { | |
#tribe-community-events { | |
padding: 10px; | |
} | |
#tribe-community-events .eventForm.bubble { | |
padding: 0; | |
} | |
} | |
@media (max-width: 420px) { |
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 get_header(); ?> | |
<?php if( ! of_get_option( 'tokopress_page_title_disable' ) ) : ?> | |
<?php get_template_part( 'block-page-title' ); ?> | |
<?php endif; ?> | |
<div id="main-content"> | |
<div class="container"> | |
<div class="row"> |
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
.dokan-dashboard .dokan-product-listing-area select.product_cat { | |
display: none; | |
} | |
.dokan-dashboard .dokan-product-listing-area button[name="product_listing_filter"] { | |
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
.tribe-events-list .event-list-wrapper-bottom { | |
height: 130px; | |
} |