woocommerce_cart_

woocommerce_cart_

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.9.3.3

apply_filters('woocommerce_cart_') is found 16 times:

  • /includes/class-wc-cart.php line 213
    	 * @since 3.2.0
    	 * @return float
    	 */
    	public function get_subtotal() {
    		return apply_filters( 'woocommerce_cart_' . __FUNCTION__, $this->get_totals_var( 'subtotal' ) );
    	}
    
    	/**
    	 * Get subtotal_tax.
    	 *
    	 * @since 3.2.0
    
  • /includes/class-wc-cart.php line 223
    	 * @since 3.2.0
    	 * @return float
    	 */
    	public function get_subtotal_tax() {
    		return apply_filters( 'woocommerce_cart_' . __FUNCTION__, $this->get_totals_var( 'subtotal_tax' ) );
    	}
    
    	/**
    	 * Get discount_total.
    	 *
    	 * @since 3.2.0
    
  • /includes/class-wc-cart.php line 233
    	 * @since 3.2.0
    	 * @return float
    	 */
    	public function get_discount_total() {
    		return apply_filters( 'woocommerce_cart_' . __FUNCTION__, $this->get_totals_var( 'discount_total' ) );
    	}
    
    	/**
    	 * Get discount_tax.
    	 *
    	 * @since 3.2.0
    
  • /includes/class-wc-cart.php line 243
    	 * @since 3.2.0
    	 * @return float
    	 */
    	public function get_discount_tax() {
    		return apply_filters( 'woocommerce_cart_' . __FUNCTION__, $this->get_totals_var( 'discount_tax' ) );
    	}
    
    	/**
    	 * Get shipping_total.
    	 *
    	 * @since 3.2.0
    
  • /includes/class-wc-cart.php line 253
    	 * @since 3.2.0
    	 * @return float
    	 */
    	public function get_shipping_total() {
    		return apply_filters( 'woocommerce_cart_' . __FUNCTION__, $this->get_totals_var( 'shipping_total' ) );
    	}
    
    	/**
    	 * Get shipping_tax.
    	 *
    	 * @since 3.2.0
    
  • /includes/class-wc-cart.php line 263
    	 * @since 3.2.0
    	 * @return float
    	 */
    	public function get_shipping_tax() {
    		return apply_filters( 'woocommerce_cart_' . __FUNCTION__, $this->get_totals_var( 'shipping_tax' ) );
    	}
    
    	/**
    	 * Gets cart total. This is the total of items in the cart, but after discounts. Subtotal is before discounts.
    	 *
    	 * @since 3.2.0
    
  • /includes/class-wc-cart.php line 273
    	 * @since 3.2.0
    	 * @return float
    	 */
    	public function get_cart_contents_total() {
    		return apply_filters( 'woocommerce_cart_' . __FUNCTION__, $this->get_totals_var( 'cart_contents_total' ) );
    	}
    
    	/**
    	 * Gets cart tax amount.
    	 *
    	 * @since 3.2.0
    
  • /includes/class-wc-cart.php line 283
    	 * @since 3.2.0
    	 * @return float
    	 */
    	public function get_cart_contents_tax() {
    		return apply_filters( 'woocommerce_cart_' . __FUNCTION__, $this->get_totals_var( 'cart_contents_tax' ) );
    	}
    
    	/**
    	 * Gets cart total after calculation.
    	 *
    	 * @since 3.2.0
    
  • /includes/class-wc-cart.php line 294
    	 * @param string $context If the context is view, the value will be formatted for display. This keeps it compatible with pre-3.2 versions.
    	 * @return float|string
    	 */
    	public function get_total( $context = 'view' ) {
    		$total = apply_filters( 'woocommerce_cart_' . __FUNCTION__, $this->get_totals_var( 'total' ) );
    		return 'view' === $context ? apply_filters( 'woocommerce_cart_total', wc_price( $total ) ) : $total;
    	}
    
    	/**
    	 * Get total tax amount.
    	 *
    
  • /includes/class-wc-cart.php line 305
    	 * @since 3.2.0
    	 * @return float
    	 */
    	public function get_total_tax() {
    		return apply_filters( 'woocommerce_cart_' . __FUNCTION__, $this->get_totals_var( 'total_tax' ) );
    	}
    
    	/**
    	 * Get total fee amount.
    	 *
    	 * @since 3.2.0
    
  • /includes/class-wc-cart.php line 315
    	 * @since 3.2.0
    	 * @return float
    	 */
    	public function get_fee_total() {
    		return apply_filters( 'woocommerce_cart_' . __FUNCTION__, $this->get_totals_var( 'fee_total' ) );
    	}
    
    	/**
    	 * Get total fee tax amount.
    	 *
    	 * @since 3.2.0
    
  • /includes/class-wc-cart.php line 325
    	 * @since 3.2.0
    	 * @return float
    	 */
    	public function get_fee_tax() {
    		return apply_filters( 'woocommerce_cart_' . __FUNCTION__, $this->get_totals_var( 'fee_tax' ) );
    	}
    
    	/**
    	 * Get taxes.
    	 *
    	 * @since 3.2.0
    
  • /includes/class-wc-cart.php line 334
    	 *
    	 * @since 3.2.0
    	 */
    	public function get_shipping_taxes() {
    		return apply_filters( 'woocommerce_cart_' . __FUNCTION__, $this->get_totals_var( 'shipping_taxes' ) );
    	}
    
    	/**
    	 * Get taxes.
    	 *
    	 * @since 3.2.0
    
  • /includes/class-wc-cart.php line 343
    	 *
    	 * @since 3.2.0
    	 */
    	public function get_cart_contents_taxes() {
    		return apply_filters( 'woocommerce_cart_' . __FUNCTION__, $this->get_totals_var( 'cart_contents_taxes' ) );
    	}
    
    	/**
    	 * Get taxes.
    	 *
    	 * @since 3.2.0
    
  • /includes/class-wc-cart.php line 352
    	 *
    	 * @since 3.2.0
    	 */
    	public function get_fee_taxes() {
    		return apply_filters( 'woocommerce_cart_' . __FUNCTION__, $this->get_totals_var( 'fee_taxes' ) );
    	}
    
    	/**
    	 * Return whether or not the cart is displaying prices including tax, rather than excluding tax.
    	 *
    	 * @since 3.3.0
    
  • /includes/class-wc-cart.php line 362
    	 * @since 3.3.0
    	 * @return bool
    	 */
    	public function display_prices_including_tax() {
    		return apply_filters( 'woocommerce_cart_' . __FUNCTION__, 'incl' === $this->get_tax_price_display_mode() );
    	}
    
    	/*
    	|--------------------------------------------------------------------------
    	| Setters.
    	|--------------------------------------------------------------------------