Skip to content

Instantly share code, notes, and snippets.

@danielbitzer
Last active March 17, 2025 01:14
Show Gist options
  • Save danielbitzer/bed363f734625afba0e37617140ef321 to your computer and use it in GitHub Desktop.
Save danielbitzer/bed363f734625afba0e37617140ef321 to your computer and use it in GitHub Desktop.
AutomateWoo - Add WP Shortcode support to workflow emails
<?php
/*
* Add shortcode support to to AutomateWoo email content.
*
* NOTE: Using shortcode's in emails is discouraged because most shortcodes don’t output valid HTML for email.
* Also many shortcodes simply don't work outside of the frontend template context.
*/
add_filter( 'automatewoo_email_content', 'shortcode_unautop', 11 );
add_filter( 'automatewoo_email_content', 'do_shortcode', 11 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment