Description
apply_filters( 'wcv_product_review_msg', __( 'Product submitted for review. Preview product.', 'wcvendors-pro' ) ), $view )
Parameters (2) (string), (string)
Usage Examples
To run the filter, copy this sample
$str = apply_filters( 'wcv_product_review_msg', $msg, $view ); if ( ! empty( $str ) ) { // what has been modified... }
To make a callback function, copy this sample
// the filter wcv_product_review_msg callback function my_filter_function( $param1, $param2 ) { // do your thing here :-) ... return $str; } add_filter( 'wcv_product_review_msg', 'my_filter_function', 10, 2 );
To remove the filter, copy this sample
//remove the filter remove_filter( 'wcv_product_review_msg', 'my_filter_function', 10, 2 );
Defined
This filter is defined in the following source file(s)
- wcvendors-pro/public/class-wcvendors-pro-product-controller.php line 130
$text[ 'notice' ] = sprintf( apply_filters( 'wcv_product_review_msg', __( 'Product submitted for review. Preview product.', 'wcvendors-pro' ) ), $view );
- wcvendors-pro/public/class-wcvendors-pro-product-controller.php line 157
$text[ 'notice' ] = sprintf( apply_filters( 'wcv_product_review_msg', __( 'Product submitted for review. Preview product.', 'wcvendors-pro' ) ), $view );