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-error .button.wc-forward, | |
.woocommerce-info .button.wc-forward, | |
.woocommerce-message .button.wc-forward { | |
display: 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
add_filter( 'woocommerce_cod_process_payment_order_status', 'tokopress_custom_change_cod_payment_order_status' ); | |
function tokopress_custom_change_cod_payment_order_status( $order_status, $order ) { | |
return 'on-hold'; | |
} |
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
.toko-slider-wrap .toko-slides .toko-slide { | |
z-index: 1; | |
position: relative; | |
} | |
.toko-slider-wrap .toko-slides .toko-slide:before { | |
background-color: red; | |
opacity: 0.3; | |
position: absolute; | |
width: 100%; | |
height: 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
.site-header .container { | |
height: 100px; | |
} | |
.site-branding { | |
height: 100px; | |
} | |
.site-logo-image { | |
padding: 0px 50px; | |
line-height: 100px; | |
} |
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
.site-header .header-menu li a { | |
padding-left: 7px; | |
padding-right: 7px; | |
} | |
.site-header .quicknav-icon { | |
padding-left: 9px; | |
padding-right: 9px; | |
} |
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: 767px) { | |
.mobile-menu { | |
position: absolute; | |
top: 0; | |
right: auto !important; | |
left: 20px !important; | |
} | |
.site-logo-image img { | |
padding-right: 0 !important; | |
padding-left: 40px !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
form.mc4wp-form input[type="email"], .mc4wp-form form input[type="email"] { | |
padding: 10px 60px 10px 10px; | |
border: 1px solid #ddd; | |
background: none; | |
} | |
form.mc4wp-form input[type="submit"], .mc4wp-form form input[type="submit"] { | |
position: absolute; | |
top: 0; | |
right: 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
<?php | |
// To Add in the Functions.php on Child Theme | |
add_action( 'init', 'remove_actions_parent_theme'); | |
function remove_actions_parent_theme() { | |
remove_action( 'tokopress_quicknav_account', 'tokopress_wc_quicknav_account_menus', 50 ); | |
}; | |
add_action( 'tokopress_quicknav_account', 'tokopress_wc_quicknav_account_menus_new', 50 ); |
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( 'woocommerce_register_form', 'dokan_seller_reg_form_fields' ); |
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 | |
$args = array( | |
'post_status'=>'publish', | |
'post_type'=> 'post', | |
'posts_per_page'=>3, | |
'orderby'=>'date', | |
'order'=>'DESC', | |
'ignore_sticky_posts' => true | |
); | |
$the_recent_post = new WP_Query( $args ); |
NewerOlder