You might need to add this snippet to ensure fields display with Divi:
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' ); |
This is how to add a snippet.