• Resolved bilievesser

    (@bilievesser)


    Maybe I’m misunderstanding, but it this option not supposed to hide the notice in the below email? This is the “new order” email, which has a notice about “managing orders on the go” by downloading the WC app. If that’s the case, it’s not working for me. Any ideas?

    If this is not what the option is for at all, any ideas how to hide it?

    • This topic was modified 3 years, 1 month ago by bilievesser.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Gilbert Hernandez

    (@ghernkadence)

    Hello,

    This could be a bug, and I will report it to the developer. However, as a workaround, you can add PHP code. You can add PHP code to your site using a plugin like Code Snippets or your functions.php file (in a child theme). Add the code below.

    add_action( 'woocommerce_email', function ( $mailer )
    {
       remove_action( 'woocommerce_email_footer', [ $mailer->emails['WC_Email_New_Order'], 'mobile_messaging' ], 9 );
    } );
    Thread Starter bilievesser

    (@bilievesser)

    Thanks for the workaround, this works great for now 🙂

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Enable mobile messaging not working?’ is closed to new replies.