Skip to content

Instantly share code, notes, and snippets.

@woogist
Created June 5, 2015 07:49
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save woogist/7226c6f3112c84c5fa34 to your computer and use it in GitHub Desktop.
Save woogist/7226c6f3112c84c5fa34 to your computer and use it in GitHub Desktop.
add_filter( 'woocommerce_gforms_strip_meta_html', 'configure_woocommerce_gforms_strip_meta_html' );
function configure_woocommerce_gforms_strip_meta_html( $strip_html ) {
$strip_html = false;
return $strip_html;
}
@lkraav
Copy link

lkraav commented Jan 12, 2020

Wouldn't this look smarter with just add_filter( 'woocommerce_gforms_strip_meta_html', '__return_false' );

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment