• Resolved jurajj

    (@jurajj)


    Dear author,
    newest Woocommerce update probably brings back unwanted Woo admin feature to websites. Can you please fix it? Thank you ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • In the mean time:

    add_filter( 'woocommerce_admin_features', function( array $features ): array {
    	$features = [];
    	return $features;
    }, 90 );
    add_action( 'admin_enqueue_scripts', function() {
    	wp_dequeue_style( 'wc-admin-app' );
    	wp_deregister_style( 'wc-admin-app' );
    ?>
    	<style>.woocommerce-layout__header{display:none;}</style>
    <?php
    }, 19 );

    Still getting the woocommerce home / top bar after the latest updates sadly :/

    Plugin Contributor ospiotr

    (@ospiotr)

    Hi @laserstore @galbaras @caban13 @leonardorodriguez

    Thank you for taking your time and posting this impressive feedback.

    Please update the plugin to version 2.5.2 and check if it now works like it should. Please let me know if you find any trouble.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘WC admin is back’ is closed to new replies.