• Resolved neikoloves

    (@neikoloves)


    Hello, did something change with the newer version of WooCommerce as the displaying of the home hub does not hide not unless I check WooCommerce Admin.

    This option will completely disable Store Front Admin, Analytics tab and Notification bar. Home screen feature will also be disabled. Note: Reload the page after saving changes to see the results.

    Doesn’t this need more of a glandular control over each element?

    I want to be able to selectivity hide the Analytics, anything marketing related, true bloat, bloated help menus but not the Dashboard Order data, this is useful. Anything that is considered true bloat, this used to work It seemed, but something changed during an update.

    Any plans for updates on this soon? It’s been 4 months now and lots of changes have taken place and I also have the professional version with the same results as I just tried.
    Thank you…

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Disable Bloat

    (@disablebloat)

    Hello @neikoloves

    Unfortunately, there is currently no way to disable WooCommerce Admin and keep Analytics active. The Analytics functionality is based on WooCommerce Admin functions and they both require to be active simultaneously to work.

    OR, maybe you are asking about the WooCommerce Status Widget in your Dashboard? https://i.imgur.com/iq4Imns.png

    Please let me know if it is the case here.

    Thread Starter neikoloves

    (@neikoloves)

    @disablebloat Yes, I’m talking about WooCommerce Status Widget, it seems if I select Disable WooCommerce Admin this also disables the WooCommerce Status Widget.

    What I’m after is a way to filter out all bloat, working on many ways. I found some ways to do this using Code Snippets Pro, but it’s not covering everything and the rules keep changing, so I’m trying to get away from having various snips and or filters.

    // Remove WooCommerce Marketing Hub & Analytics Menu from the sidebar - for WooCommerce v4.3+
    add_filter( 'woocommerce_admin_features', function( $features ) {
    	/**
    	 * Filter the list of features and get rid of the features not needed.
    	 * 
    	 * array_values() are being used to ensure that the filtered array returned by array_filter()
    	 * does not preserve the keys of initial $features array. As key preservation is a default feature 
    	 * of array_filter().
    	 */
    	return array_values(
    		array_filter( $features, function($feature) {
    			return ! in_array( $feature, [ 'marketing', 'analytics', 'analytics-dashboard', 'analytics-dashboard/customizable' ] );
    		} ) 
    	);
    } );

    Hence why I went after your pro solution so I can stay up to date with change.

    When will we see the next update and do you have a public place for planned updates and or future pipeline plans?

    Best regards…

    Plugin Author Disable Bloat

    (@disablebloat)

    Dear @neikoloves

    Please paste your WooCommerce System Status Report.

    I was unable to replicate this issue (Woo Status Widget not showing in the WordPress Dashboard), so it might be a bug related to your WP/Woo version. We will verify it as soon as you give us more info about your WordPress installation.

    We are currently analyzing the possibility of disabling individual WooCommerce features. Stay tuned for updates, as we are planning a major plugin update this autumn.

    Plugin Author Disable Bloat

    (@disablebloat)

    As @neikoloves did not reply, I’m marking this thread as resolved. Feel free to post your WooCommerce System Status Report or open a new thread.

    Thread Starter neikoloves

    (@neikoloves)

    @disablebloat Sorry I have been super busy and this just slipped by me, will look at this next week and reply if the issue is not solved. Thanks again for the great support, hope to see an update soon regardless. Have a great weekend. (o;

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Disable Home Marketing Hub’ is closed to new replies.