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
.section-flash-sale-block .products-carousel-wrap { | |
max-width: 100%; | |
flex: 0 0 100%; | |
} |
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('init', 'tokoo_child_remove_manual_copyright'); | |
function tokoo_child_remove_manual_copyright() { | |
remove_filter( 'copyright_info', 'redux_apply_footer_copyright_text', 10 ); | |
} |
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
.brand-thumbnails.columns-5 { | |
display: flex; | |
flex-wrap: wrap; | |
} | |
.brand-thumbnails .thumbnail { | |
flex: 0 0 auto; | |
width: 100%; | |
padding: 25px !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
function cartzilla_live_chat_setting() { | |
if( class_exists( 'Dokan_Pro' ) ) { | |
if( class_exists( 'WeDevs\DokanPro\Modules\LiveChat\VendorSettings' ) ) { | |
cartzilla_remove_class_action( 'dokan_settings_form_bottom', 'WeDevs\DokanPro\Modules\LiveChat\VendorSettings', 'dokan_live_chat_seller_settings', 15 ); | |
} | |
} | |
} | |
add_action('init', 'cartzilla_live_chat_setting'); |
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
.primary-nav .primary-nav-menu .primary-vertical-nav > ul.sub-menu > li, | |
.departments-menu li.menu-item-has-children { | |
position: relative !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
.vertical-nav.yamm .menu-item-has-children { | |
position: relative !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
.sticky-wrapper .tokoo-sticky-wrap.stuck { | |
z-index: 10000; | |
} | |
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
.tv-show-tabs .masvideos-Reviews { | |
display: flex; | |
flex-direction: column; | |
} | |
.masvideos-Reviews #review_form_wrapper { | |
order:2; | |
} | |
.masvideos-Reviews #comments { |
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( 'init', 'rearrange_tv_shows_content'); | |
function rearrange_tv_shows_content() { | |
remove_action( 'masvideos_after_single_tv_show_summary', 'vodi_template_single_related_tv_shows_carousel', 20 ); | |
remove_action( 'masvideos_after_single_tv_show_summary', 'masvideos_template_single_tv_show_tabs', 30 ); | |
add_action( 'masvideos_after_single_tv_show_summary', 'vodi_template_single_related_tv_shows_carousel', 21 ); | |
add_action( 'masvideos_after_single_tv_show_summary', 'masvideos_template_single_tv_show_tabs', 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
$instance = MAS_Travels::instance(); | |
remove_filter( 'woocommerce_dropdown_variation_attribute_options_html', array( $instance, 'mas_travels_filter_dropdown_option_html' ), 12, 2 ); | |
add_filter( 'woocommerce_dropdown_variation_attribute_options_html','mas_travels_filter_dropdown_option_html',12, 2 ); | |
function mas_travels_filter_dropdown_option_html( $html, $args ) { | |
global $product; | |
$product_format = get_product_format() ? get_product_format() : 'standard'; | |
$product_type = $product->get_type(); |