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
/* use solid background color on event date (event list) */ | |
.tribe-events-list .tribe-events-event-date { | |
background: #1e73be !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
/* hide breadcrumb */ | |
.page-title .breadcrumb { | |
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( 'tokopress_quicknav_account', 'mycustom_quicknav_account_custommenu', 10 ); | |
function mycustom_quicknav_account_custommenu() { | |
?> | |
<li><a href="#">Custom Menu <i class="fa fa-car"></i> </a></li> | |
<?php | |
} |
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( 'tokopress_quicknav_account', 'mycustom_quicknav_account_editprofile', 10 ); | |
function mycustom_quicknav_account_editprofile() { | |
/* only logged in user can see it */ | |
if ( ! is_user_logged_in() ) | |
return; | |
?> | |
<li><a href="<?php echo admin_url('profile.php'); ?>">Edit Profile <i class="fa fa-shopping-cart"></i> </a></li> | |
<?php |
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( 'tokopress_layout_class', 'mycustom_cmanswer_layout_class' ); | |
function mycustom_cmanswer_layout_class( $layout ) { | |
if ( is_singular('cma_thread') ) | |
$layout = 'layout-1c-full'; | |
return $layout; | |
} |
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( 'tribe_query_can_inject_date_field', 'toko_fix_tribe_query_can_inject_date_field' ); | |
function toko_fix_tribe_query_can_inject_date_field( $can ) { | |
global $wp_query; | |
if ( isset($wp_query->query['eventDisplay']) && $wp_query->query['eventDisplay'] == 'month' ) { | |
$can = false; | |
} | |
return $can; | |
} |
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_bookie_rearrange_book_details' ); | |
function custom_bookie_rearrange_book_details() { | |
remove_action( 'woocommerce_after_single_product_summary', 'toko_wc_book_details', 5 ); | |
add_action( 'woocommerce_after_single_product_summary', 'toko_wc_book_details', 15 ); | |
} |
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
if ( class_exists('Tribe__Settings_Manager') ) { | |
Tribe__Settings_Manager::set_option( 'organizer_venue_amalgamation', 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
table.tribe-events-tickets .tickets_price { | |
min-width: 80px !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
img.alignleft { | |
display: inline; | |
float: left; | |
margin-right: 1.5em; | |
} | |
img.alignright { | |
display: inline; | |
float: right; | |
margin-left: 1.5em; | |
} |
OlderNewer