Skip to content

Instantly share code, notes, and snippets.

@grantalltodavid
Created March 11, 2022 05:45
Show Gist options
  • Save grantalltodavid/6011c15067f89ac527a2ac1fa1afd0f7 to your computer and use it in GitHub Desktop.
Save grantalltodavid/6011c15067f89ac527a2ac1fa1afd0f7 to your computer and use it in GitHub Desktop.
Sliced Invoices: allow shortcodes in invoice terms field
add_filter( 'sliced_get_invoice_terms', 'si20220310_do_shortcodes_in_terms' );
function si20220310_do_shortcodes_in_terms( $content ) {
return do_shortcode( $content );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment