woocommerce_cart_redirect_after_error
The WooCommerce woocommerce cart redirect after error hook.
Description
apply_filters( 'woocommerce_cart_redirect_after_error', (unknown) $get_permalink, (unknown) $product_id );
Parameters (2)
- 0. $get_permalink (unknown) =>
get_permalink( $product_id )
- The get permalink.
- 1. $product_id (unknown)
- The product id.
Usage
- To run the hook, copy the example below.
- $get_permalink = apply_filters( 'woocommerce_cart_redirect_after_error', $get_permalink, $product_id );
- if ( !empty( $get_permalink ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the woocommerce_cart_redirect_after_error callback
- function filter_woocommerce_cart_redirect_after_error( $get_permalink, $product_id ) {
- // make filter magic happen here...
- return $get_permalink;
- };
- // add the filter
- add_filter( 'woocommerce_cart_redirect_after_error', 'filter_woocommerce_cart_redirect_after_error', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'woocommerce_cart_redirect_after_error', 'filter_woocommerce_cart_redirect_after_error', 10, 2 );
Defined (1)
The filter is defined in the following location(s).
- /includes/class-wc-ajax.php
- 'product_url' => apply_filters( 'woocommerce_cart_redirect_after_error', get_permalink( $product_id ), $product_id ),