Skip to content

Instantly share code, notes, and snippets.

@plugin-republic
Created May 28, 2020 10:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save plugin-republic/0995cbb9fe96f7b1e5b5fd5fc04d7cc5 to your computer and use it in GitHub Desktop.
Save plugin-republic/0995cbb9fe96f7b1e5b5fd5fc04d7cc5 to your computer and use it in GitHub Desktop.
Fix issue with extra fields not displaying with Divi Builder
<?php
/**
* Fix issue with extra fields not displaying with Divi Builder
*/
function prefix_check_did_action( $n ) {
return 2;
}
add_filter( 'pewc_check_did_action', 'prefix_check_did_action' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment