woocommerce_before_mini_cart_contents

woocommerce_before_mini_cart_contents

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: action

See hook in core

Displaying hooks found in version: woocommerce.9.8.1

do_action('woocommerce_before_mini_cart_contents') is found 1 times:

  • /templates/cart/mini-cart.php line 28
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    <?php if ( WC()->cart && ! WC()->cart->is_empty() ) : ?>
     
        <ul class="woocommerce-mini-cart cart_list product_list_widget <?php echo esc_attr( $args&#91;'list_class'&#93; ); ?>">
            <?php
            do_action( 'woocommerce_before_mini_cart_contents' );
     
            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 );
     
                if ( $_product && $_product->exists() && $cart_item['quantity'] > 0 && apply_filters( 'woocommerce_widget_cart_item_visible', true, $cart_item, $cart_item_key ) ) {