woocommerce_cart_

woocommerce_cart_

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

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

apply_filters('woocommerce_cart_') is found 16 times:

  • /includes/class-wc-cart.php line 211
    	 * @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 221
    	 * @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 231
    	 * @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 241
    	 * @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 251
    	 * @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 261
    	 * @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 271
    	 * @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 281
    	 * @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 292
    	 * @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 303
    	 * @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 313
    	 * @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 323
    	 * @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 332
    	 *
    	 * @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 341
    	 *
    	 * @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 350
    	 *
    	 * @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 360
    	 * @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.
    	|--------------------------------------------------------------------------