James Lewis
I read that you can increase the limit placed on custom fields. This is the code given to do this. add_filter( 'postmeta_form_limit', 'increase_custom_field_limit' ); function increase_custom_field_limit( $limit ) { $limit = 999; return $limit; } Does anyone know where I place this code to increase the limit? I tried to add it to the Formidable-Pro.php file under the Formidable Pro folder, but no increase.