Description
apply_filters( 'wcv_partial_path_pro_user_country_rate' , 'partials/vendor/wcvendors-pro-user-meta-shipping-country-rate.php' );
Parameters (1) (string)
Usage Examples
To run the filter, copy this sample
// hand edit this example $str = apply_filters( 'wcv_partial_path_pro_user_country_rate' , $param ); if ( ! empty( $str ) ) { // what has been modified... }
To make a callback function, copy this sample
// the filter wcv_partial_path_pro_user_country_rate callback function filter_wcv_partial_path_pro_user_country_rate( $param ) { // do your thing here :-) ... return $str; } add_filter( 'wcv_partial_path_pro_user_country_rate', 'filter_wcv_partial_path_pro_user_country_rate', 10, 1 );
To remove the filter, copy this sample
//remove the filter remove_filter( 'wcv_partial_path_pro_user_country_rate', 'filter_wcv_partial_path_pro_user_country_rate', 10, 1 );
Defined
This filter is defined in the following source file(s)
- wcvendors-pro/admin/class-wcvendors-pro-shipping-controller.php line 401
include( apply_filters( 'wcv_partial_path_pro_user_country_rate' , 'partials/vendor/wcvendors-pro-user-meta-shipping-country-rate.php' ) );