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', 'mytravel_child_rearrange_search_button'); | |
function mytravel_child_rearrange_search_button() { | |
remove_action( 'mytravel_header_v1', 'mytravel_navbar_search', 30 ); | |
add_action( 'mytravel_header_v1', 'mytravel_navbar_search', 55 ); | |
} |
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 (min-width: 992px) { | |
.navbar-expand-lg .search-form .search-field { | |
min-width: 228px; | |
} | |
} |
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( 'geeks_header', 'geeks_navbar_right_load_login', 91 ); | |
if ( ! function_exists( 'geeks_navbar_right' ) ) { | |
function geeks_navbar_right() { | |
if ( geeks_navbar_is_user_profile_info() ) : | |
if ( is_user_logged_in() ) : | |
$user = wp_get_current_user(); | |
$avatar = get_avatar( $user->ID, 40, '', '', array( 'class' => 'rounded-circle' ) ); | |
if( geeks_navbar_is_enable_cart() ) { |
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 global $post; ?> | |
<div class="feedback-content"> | |
<div class="wedocs-feedback-wrap wedocs-hide-print text-center border-top mt-5 pt-5"> | |
<?php | |
$positive = (int) get_post_meta( $post->ID, 'positive', true ); | |
$negative = (int) get_post_meta( $post->ID, 'negative', true ); | |
$positive_title = $positive ? sprintf( _n( '%d person found this useful', '%d persons found this useful', $positive, 'cartzilla' ), number_format_i18n( $positive ) ) : esc_html__( 'No votes yet', 'cartzilla' ); | |
$negative_title = $negative ? sprintf( _n( '%d person found this not useful', '%d persons found this not useful', $negative, 'cartzilla' ), number_format_i18n( $negative ) ) : esc_html__( 'No votes yet', 'cartzilla' ); | |
?> |
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( 'tutor_dashboard/instructor_nav_items', 'hide_withdraw_menu_item', 10, 1 ); | |
function hide_withdraw_menu_item( $menu_items ) { | |
if ( isset( $menu_items['withdraw'] ) ) { | |
unset( $menu_items['withdraw'] ); | |
} | |
return $menu_items; | |
} |
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: 991px) { | |
.navbar-expand-lg .navbar-nav .dropdown-menu { | |
position: static; | |
} | |
} |
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( 'bookworm_offcanvas_header_title', 'bookworm_ch_change_offcanvas_title' ); | |
function bookworm_ch_change_offcanvas_title() { | |
$title = "Enter Your Tile Here"; | |
return $title; | |
} |
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
.tutor-form-control { | |
border: 1px solid #eae7f5 !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
.single-product .product-images-wrapper .woocommerce-product-gallery__image { | |
flex: none !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
.flaticon-place:before { content: "\f100"; } | |
.flaticon-social-2:before { content: "\f101"; } | |
.flaticon-twitter-social-logotype:before { content: "\f102"; } | |
.flaticon-social-1:before { content: "\f103"; } | |
.flaticon-question:before { content: "\f104"; } | |
.flaticon-checkmark:before { content: "\f105"; } | |
.flaticon-close:before { content: "\f106"; } | |
.flaticon-round:before { content: "\f107"; } | |
.flaticon-delete:before { content: "\f108"; } | |
.flaticon-wallet:before { content: "\f109"; } |
NewerOlder