How to Hide WooCommerce Subscription D...
This MyListing code snippet helps you hide WooCommerce subscription details for free ...

WPCodeBox
586
Move WPCodeBox menu to the top bar for easy access in WordPress.
<?php
add_filter( 'admin_bar_menu', function( $wp_admin_bar ) {
if ( current_user_can( 'manage_options' ) && is_admin_bar_showing() ) {
$iconhtml = sprintf( '<span class="wpcb ab-icon"><img src="%s" style="height: 16px;" /></span>', WP_PLUGIN_URL . '/wpcodebox/logo.svg' );
$wp_admin_bar->add_node(
array(
'id' => 'wpcodebox_adminbar',
'title' => $iconhtml . '<span class="wpcb ab-label">' . __( 'WPCodeBox', 'wpcodebox' ) . '</span>',
'href' => admin_url( 'admin.php?page=wpcodebox2' ),
)
);
}
}, 999 );





