Created
May 28, 2020 10:27
-
-
Save plugin-republic/0995cbb9fe96f7b1e5b5fd5fc04d7cc5 to your computer and use it in GitHub Desktop.
Fix issue with extra fields not displaying with Divi Builder
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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