• Resolved riversworldsa

    (@riversworldsa)


    Hi
    I’ve just updated my woocommerce and some other plugins.

    Marketing Hub tab is not showing anymore

    Please help

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Remi Corson

    (@corsonr)

    Automattic Happiness Engineer

    Hi there,

    Can you please check if this code is present in your theme/addons:

    // Remove Marketing Hub menu item
    add_filter( 'woocommerce_marketing_menu_items', '__return_empty_array' );

    or

    add_filter( 'woocommerce_admin_features', function( $features ) {
        /**
         * Filter list of features and remove those not needed     *
         */
        return array_values(
            array_filter( $features, function($feature) {
                return $feature !== 'marketing';
            } ) 
        );
    } );

    Thos two snippets aim to remove the marketing tab, so if you find one of them you can comment/remove it.

    If you don’t find them, then can you please do a conflict test?

    Remi Corson

    (@corsonr)

    Automattic Happiness Engineer

    We haven’t heard back from you in a while, so I’m going to mark this as resolved – if you have any further questions, you can start a new thread.

    Hi @corsonr,

    I have a similar issue. I had Coupons as a separate menu item, but that is no longer available. I have learned through a search that this should now be under the Marketing Hub. However, I do not have the Marketing Hub even though I’m running Version 4.8. I have also followed these instructions and have the right enable coupons box clicked: https://docs.woocommerce.com/document/coupon-management/

    I have also done a conflict test only with recently added or updated plugins.

    I’m not skilled with code but I can follow directions. Where and how should I look for the code you mention above?

    Thanks, Kacee

    Same problem here. Marketing has disappeared. Active coupons are still working, but I can’t manage them anymore. I did nothing special, no changes whatsoever. Only automatic plugin updates.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Woocommerce Marketing Hub Is Not Showing’ is closed to new replies.