Server : Apache/2 System : Linux vps.sdns.vn 3.10.0-1160.15.2.el7.x86_64 #1 SMP Wed Feb 3 15:06:38 UTC 2021 x86_64 User : phatdatpq ( 1022) PHP Version : 7.2.34 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/phatdatpq/public_html/wp-content/themes/flatsome/woocommerce/checkout/ |
Upload File : |
<?php function flatsome_checkout_breadcrumb_class($endpoint){ $classes = array(); if($endpoint == 'cart' && is_cart() || $endpoint == 'checkout' && is_checkout() && !is_wc_endpoint_url('order-received') || $endpoint == 'order-received' && is_wc_endpoint_url('order-received')) { $classes[] = 'current'; } else{ $classes[] = 'hide-for-small'; } return implode(' ', $classes); } $steps = get_theme_mod('cart_steps_numbers', 0); ?> <div class="checkout-page-title page-title"> <div class="page-title-inner flex-row medium-flex-wrap container"> <div class="flex-col flex-grow medium-text-center"> <nav class="breadcrumbs flex-row flex-row-center heading-font checkout-breadcrumbs text-center strong <?php echo get_theme_mod('cart_steps_size','h2'); ?> <?php echo get_theme_mod('cart_steps_case','uppercase'); ?>"> <a href="<?php echo esc_url( wc_get_cart_url() ); ?>" class="<?php echo flatsome_checkout_breadcrumb_class('cart'); ?>"> <?php if($steps) { echo '<span class="breadcrumb-step hide-for-small">1</span>'; } ?> <?php _e('Shopping Cart', 'flatsome'); ?> </a> <span class="divider hide-for-small"><?php echo get_flatsome_icon('icon-angle-right');?></span> <a href="<?php echo esc_url( wc_get_checkout_url() ); ?>" class="<?php echo flatsome_checkout_breadcrumb_class('checkout') ?>"> <?php if($steps) { echo '<span class="breadcrumb-step hide-for-small">2</span>'; } ?> <?php _e('Checkout details', 'flatsome'); ?> </a> <span class="divider hide-for-small"><?php echo get_flatsome_icon('icon-angle-right');?></span> <a href="#" class="no-click <?php echo flatsome_checkout_breadcrumb_class('order-received'); ?>"> <?php if($steps) { echo '<span class="breadcrumb-step hide-for-small">3</span>'; } ?> <?php _e('Order Complete', 'flatsome'); ?> </a> </nav> </div> </div> </div>