WooCommerce: Remove “Get the app” Ad @ Admin Order Emails

Here’s a quick snippet to disable those (annoying) WooCommerce ads that show in the footer of the “New Order” email (which goes to admins): “Process your orders on the go. Get the app.

The code is a little different from what you find online, let me know if it works!

The “Process your orders on the go” ad is automatically placed by WooCommerce in the New Order admin email footer. Here’s how to hide it.

PHP Snippet: Disable “Process your orders on the go. Get the app” Text Ad @ WooCommerce New Order Emails

/**
 * @snippet       Hide "Get the app" Ads @ WooCommerce Emails
 * @how-to        Get CustomizeWoo.com FREE
 * @author        Rodolfo Melogli
 * @compatible    WooCommerce 8
 * @donate $9     https://businessbloomer.com/bloomer-armada/
 */ 

add_action( 'woocommerce_email_footer', 'bbloomer_remove_get_the_app_ad', 8 );

function bbloomer_remove_get_the_app_ad() {
   $object = WC()->mailer();
   remove_action( 'woocommerce_email_footer', array( $object, 'mobile_messaging' ), 9 );
}

Where to add custom code?

You should place PHP snippets at the bottom of your child theme functions.php file and CSS at the bottom of its style.css file. Make sure you know what you are doing when editing such files - if you need more guidance, please take a look at my guide "Should I Add Custom Code Via WP Editor, FTP or Code Snippets?" and my video tutorial "Where to Place WooCommerce Customization?"

Does this snippet (still) work?

Please let me know in the comments if everything went as expected. I would be happy to revise the snippet if you report otherwise (please provide screenshots). I have tested this code with Storefront theme, the WooCommerce version listed above and a WordPress-friendly hosting.

If you think this code saved you time & money, feel free to join 17,000+ WooCommerce Weekly subscribers for blog post updates and 250+ Business Bloomer supporters for 365 days of WooCommerce benefits. Thank you in advance!

Need Help with WooCommerce?

Check out these free video tutorials. You can learn how to customize WooCommerce without unnecessary plugins, how to properly configure the WooCommerce plugin settings and even how to master WooCommerce troubleshooting in case of a bug!

Rodolfo Melogli

Business Bloomer Founder

Author, WooCommerce expert and WordCamp speaker, Rodolfo has worked as an independent WooCommerce freelancer since 2011. His goal is to help entrepreneurs and developers overcome their WooCommerce nightmares. Rodolfo loves travelling, chasing tennis & soccer balls and, of course, wood fired oven pizza.

23 thoughts on “WooCommerce: Remove “Get the app” Ad @ Admin Order Emails

  1. Did not work for WP 6.1.1. Shucks!

      1. Hook does not work anymore. It used to.

        WP Versio 6.3.1 and Jetpack Versio 12.5

        https://snipboard.io/IrVsOM.jpg

        1. Hello, that’s not inside the WooCommerce plugin, so it must be a Jetpack plugin thing. Other than that, I confirm the “jetpack_just_in_time_msgs” filter does not exist any longer in WooCommerce, so I will publish an update here asap

  2. Update – I had the code in my functions.php already and it has been working, but now the Jetpack ads have returned with a vengeance. This time it is an “Connect Jetpack to activate WooCommerce Shipping & Tax”

    1. Ouch. Do you use the “WooCommerce Services” plugin? If not, simply disable it. If yes, I’m sure there is a way of hiding that, let me know

      1. Still seeing this on my end as well with the snippet in functions.php. We DO NOT have the Jetpack plugin installed either, which makes it a bit odd…

        1. Can you do a test with https://wordpress.org/plugins/disable-dashboard-for-woocommerce/? If it works with that plugin, I can reverse-engineer which function you should use

  3. Yes it worked fine. I placed at the bottom of the PHP file, well below the <?.

    Stephen

    1. Nice!

  4. Hi,
    it seems that it´s not working anymore in woocommerce 3.7.
    Anyway to fix this ? Also, is it not enough to deactivate “Woocommerce Services” ?

    Thanks,
    Jorge Correia

    1. Was it working on previous versions for you? I don’t see any JP ads on my end on 3.7

  5. Great suggestion – thank you for making this easier for me – it is driving my clients mad seeing these and creating confusion. Clients think they need this or that added every time they get into the back end of their site. I’m all for simplicity and a streamlined flow.

    1. Nice!

  6. Looks like with Jetpack 7.5.3 this no longer works – I see a pinterest ad right now.

    1. Not sure… I don’t think Jetpack has anything to do with Pinterest?

  7. This is apparently working in general, but does not seem to stop the ads in Opera browser.
    Perhaps it handles the PHP differently?

    1. I don’t think so… try clearing Opera cookies/cache

  8. Would be nice with an article about why JetPack should be used at all. It’s been reported over and over pretty much everywhere that it slows your site down. I would never even go near it.

    1. Hey Jessica, thanks for your message! I use it on this same website, and by activating only the “modules” I need, it does not slow it down. JetPack is totally fine to use and because it’s Automattic’s property, they’re also very responsive with support. Give it a go 🙂

  9. Why not just click the little x on the right hand side? Works for me.

    1. Good point John, but I noticed even if I click on “x” the ads and future ads keep coming back after a while 🙂

    2. Because then after a week a new one can pop up.
      Using the suggested code above you’ll never see annoying ads like this again… (until they change the code/filter/function)

Questions? Feedback? Support? Leave your Comment Now!
_____

If you are writing code, please wrap it between shortcodes: [php]code_here[/php]. Failure to complying with this (as well as going off topic, not writing in English, etc.) will result in comment deletion. You should expect a reply in about 2 weeks - this is a popular blog but I need to get paid work done first. Please consider joining BloomerArmada to get blog comment reply priority, ask me 1-to-1 WooCommerce questions and enjoy many more perks. Thank you :)

Your email address will not be published. Required fields are marked *