woocommerce_support_url filter-hookWC 1.0

The premium support URL.

Usage

add_filter( 'woocommerce_support_url', 'wp_kama_woocommerce_support_url_filter' );

/**
 * Function for `woocommerce_support_url` filter-hook.
 * 
 * @param  $url 
 *
 * @return 
 */
function wp_kama_woocommerce_support_url_filter( $url ){

	// filter...
	return $url;
}
$url
-

Changelog

Since

Where the hook is called

WC_Install::plugin_row_meta()
woocommerce_support_url
woocommerce/includes/class-wc-install.php 2009
$support_url = apply_filters( 'woocommerce_support_url', 'https://woo.com/my-account/create-a-ticket/' );

Where the hook is used in WooCommerce

Usage not found.