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 only screen and (max-width: 768px) { | |
ul#progressbar { | |
display: flex; | |
} | |
} |
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
.et_pb_de_mach_acf_slider_containter_nav .de_mach_gallery_image { | |
border-radius: 15px; | |
} |
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
.slick-current { | |
width: 400px !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
.de_dn_youtube_video { | |
background: 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
/* ADJUST VARIATION SWATCHES TO CREATE A CIRCLE AND USE THE TOOLTIP */ | |
img.bc-variation-image { | |
border-radius: 40px; | |
} |
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
/*PLEASE REPLACE BACKGROUND COLOR RULE WITH THE HEX COLOR VALUE OF YOUR CHOICE */ | |
.woocommerce #page-container #et-boc .bodycommerce-ofs-badge span.onsale{ | |
background-color: #020000 !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
/* PLEASE REPLACE RED WITH ANY COLOR OF YOUR CHOICE OR PUT ANY HEX COLOR CODE YOU WANT */ | |
.et_pb_de_mach_search_posts_item_1 .divi-radio-tick_box.radio-choice-radio .divi-checkboxmulti input:checked~.checkmark{ | |
background-color:red !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
@media only screen and (min-width: 768px){ | |
.woocommerce-notices-wrapper { | |
position: absolute; | |
top: 50vh; | |
left: 10%; | |
z-index: 99; | |
} | |
} |
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 df_autologin_hook( $form_id, $user_id, $post_array ){ | |
if (!is_user_logged_in()) { | |
$user = get_user_by('id', $user_id ); | |
wp_set_current_user( $user_id, $user->user_login ); | |
wp_set_auth_cookie( $user_id ); | |
do_action( 'wp_login', $user->user_login, $user ); | |
} | |
} | |
add_action('df_after_insert_user', 'df_autologin_hook', 10, 3); |