35 lines
1.6 KiB
PHP
35 lines
1.6 KiB
PHP
<?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 );
|
|
?>
|
|
|
|
<nav class="breadcrumbs flex-row flex-row-start checkout-breadcrumbs text-left medium-text-center is-large <?php echo get_theme_mod( 'cart_steps_case', 'uppercase' ); ?>">
|
|
<i class="icon-lock op-5"></i>
|
|
<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 esc_html_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 esc_html_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 esc_html_e( 'Order Complete', 'flatsome' ); ?>
|
|
</a>
|
|
</nav>
|