woocommerce_checkout_cart_item_visible
The WooCommerce Rejoiner woocommerce checkout cart item visible hook.
Description
apply_filters( 'woocommerce_checkout_cart_item_visible', (bool) $true, (unknown) $cart_item, (unknown) $cart_item_key );
Parameters (3)
- 0. $true (bool) =>
true
- The true.
- 1. $cart_item (unknown)
- The cart item.
- 2. $cart_item_key (unknown)
- The cart item key.
Usage
- To run the hook, copy the example below.
- $true = apply_filters( 'woocommerce_checkout_cart_item_visible', $true, $cart_item, $cart_item_key );
- if ( !empty( $true ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the woocommerce_checkout_cart_item_visible callback
- function filter_woocommerce_checkout_cart_item_visible( $true, $cart_item, $cart_item_key ) {
- // make filter magic happen here...
- return $true;
- };
- // add the filter
- add_filter( 'woocommerce_checkout_cart_item_visible', 'filter_woocommerce_checkout_cart_item_visible', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'woocommerce_checkout_cart_item_visible', 'filter_woocommerce_checkout_cart_item_visible', 10, 3 );
Defined (1)
The filter is defined in the following location(s).
- /includes/class-wc-rejoiner.php
- if ( $_product && $_product->exists() && $cart_item['quantity'] > 0 && apply_filters( 'woocommerce_checkout_cart_item_visible', true, $cart_item, $cart_item_key ) ) {