How To Change Max File Upload Size For Custom Field Input Type File
Code goes to your active theme’s functions.php file:
add_filter('wpccf_upload_maxfilesize_mb', function($size){ return 10; // 10 mb }, 25, 1);
Code goes to your active theme’s functions.php file:
add_filter('wpccf_upload_maxfilesize_mb', function($size){ return 10; // 10 mb }, 25, 1);