woocommerce_product_short_description_editor_settings filter-hookWC 1.0

Usage

add_filter( 'woocommerce_product_short_description_editor_settings', 'wp_kama_woocommerce_product_short_description_editor_settings_filter' );

/**
 * Function for `woocommerce_product_short_description_editor_settings` filter-hook.
 * 
 * @param  $settings 
 *
 * @return 
 */
function wp_kama_woocommerce_product_short_description_editor_settings_filter( $settings ){

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

Where the hook is called

WC_Meta_Box_Product_Short_Description::output()
woocommerce_product_short_description_editor_settings
woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-short-description.php 35
wp_editor( htmlspecialchars_decode( $post->post_excerpt, ENT_QUOTES ), 'excerpt', apply_filters( 'woocommerce_product_short_description_editor_settings', $settings ) );

Where the hook is used in WooCommerce

Usage not found.