File: D:/HostingSpaces/ERijn/knijft.eu/wwwroot/wp-content/themes/cheope/woocommerce/cart/mini-cart.php
<?php
/**
* Mini-cart
*
* Contains the markup for the mini-cart, used by the cart widget
*
* @author WooThemes
* @package WooCommerce/Templates
* @version 2.1.0
*/
global $yit_is_header;
?>
<?php if($yit_is_header): ?>
<a href="<?php echo WC()->cart->get_cart_url(); ?>" class="cart_control">Cart</a>
<div class="cart_wrapper">
<?php endif ?>
<ul class="cart_list product_list_widget <?php echo $args['list_class']; ?>">
<?php if ( sizeof( WC()->cart->get_cart() ) > 0 ) : ?>
<?php foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) :
$_product = apply_filters( 'woocommerce_cart_item_product', $cart_item['data'], $cart_item, $cart_item_key );
$product_id = apply_filters( 'woocommerce_cart_item_product_id', $cart_item['product_id'], $cart_item, $cart_item_key );
// Only display if allowed
if ( !( $_product && $_product->exists() && $cart_item['quantity'] > 0 && apply_filters( 'woocommerce_widget_cart_item_visible', true, $cart_item, $cart_item_key ) ) ) {
continue;
}
$product_name = apply_filters( 'woocommerce_cart_item_name', $_product->get_title(), $cart_item, $cart_item_key );
$thumbnail = apply_filters( 'woocommerce_cart_item_thumbnail', $_product->get_image(), $cart_item, $cart_item_key );
$product_price = apply_filters( 'woocommerce_cart_item_price', WC()->cart->get_product_price( $_product ), $cart_item, $cart_item_key );
?>
<li>
<a href="<?php echo get_permalink( $cart_item['product_id'] ); ?>">
<?php echo $_product->get_image(); ?>
</a>
<a href="<?php echo get_permalink( $cart_item['product_id'] ); ?>">
<?php echo apply_filters('woocommerce_widget_cart_product_title', $_product->get_title(), $_product ); ?>
</a>
<?php
echo apply_filters( 'woocommerce_cart_item_remove_link', sprintf( '<a href="%s" class="remove_item" title="%s">%s</a>', esc_url( WC()->cart->get_remove_url( $cart_item_key ) ), __('Remove this item', 'yit'), __( '× remove', 'yit' ) ), $cart_item_key );
?>
<?php echo WC()->cart->get_item_data( $cart_item ); ?>
<span class="quantity"><?php printf( '%s × %s', $cart_item['quantity'], $product_price ); ?></span>
</li>
<?php endforeach; ?>
<?php else : ?>
<li class="empty"><?php _e('No products in the cart.', 'yit'); ?></li>
<?php endif; ?>
</ul><!-- end product list -->
<?php if ( sizeof( WC()->cart->get_cart() ) > 0 ) : ?>
<p class="total"><strong><?php _e( 'Subtotal', 'yit' ); ?>:</strong> <?php echo WC()->cart->get_cart_subtotal(); ?></p>
<?php do_action( 'woocommerce_widget_shopping_cart_before_buttons' ); ?>
<p class="buttons">
<a href="<?php echo WC()->cart->get_cart_url(); ?>" class="button wc-forward"><?php _e( 'View Cart', 'yit' ); ?></a>
<a href="<?php echo WC()->cart->get_checkout_url(); ?>" class="button checkout wc-forward"><?php _e( 'Checkout', 'yit' ); ?></a>
</p>
<?php endif; ?>
<?php do_action( 'woocommerce_after_mini_cart' ); ?>
<?php if($yit_is_header): ?>
</div>
<script type="text/javascript">
jQuery(document).ready(function($){
$('.cart_control').live('click', function(e){
//e.preventDefault();
});
$('.cart_control').live('hover', function(){
$(this).next('.cart_wrapper').slideDown();
}).live('mouseleave', function(){
$(this).next('.cart_wrapper').delay(500).slideUp();
});
$('.cart_wrapper')
.live('mouseenter', function(){ $(this).stop(true,true).show() })
.live('mouseleave', function(){ $(this).delay(500).slideUp() });
});
</script>
<?php endif ?>