woocommerce_show_admin_bar_visit_store filter-hookWC 1.0

Usage

add_filter( 'woocommerce_show_admin_bar_visit_store', 'wp_kama_woocommerce_show_admin_bar_visit_store_filter' );

/**
 * Function for `woocommerce_show_admin_bar_visit_store` filter-hook.
 * 
 * @param  $true 
 *
 * @return 
 */
function wp_kama_woocommerce_show_admin_bar_visit_store_filter( $true ){

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

Where the hook is called

WC_Admin_Menus::__construct()
woocommerce_show_admin_bar_visit_store
woocommerce/includes/admin/class-wc-admin-menus.php 79
if ( apply_filters( 'woocommerce_show_admin_bar_visit_store', true ) ) {

Where the hook is used in WooCommerce

Usage not found.