1. Home
  2. Knowledge Base
  3. WooCommerce Product Add-Ons Ultimate
  4. Product Page
  5. Add-on fields not displaying with Divi page builder
  1. Home
  2. Knowledge Base
  3. WooCommerce Product Add-Ons Ultimate
  4. Add-on fields not displaying with Divi page builder
  1. Home
  2. Knowledge Base
  3. Troubleshooting
  4. Add-on fields not displaying with Divi page builder

Add-on fields not displaying with Divi page builder

You might need to add this snippet to ensure fields display with Divi:

<?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.

Was this article helpful?

Related Articles