Upload multiple images at once in Classipress
With the following code in functions.php you can select all the photos you want to upload in one go.
But it does not limit how many photos can be uploaded.
Does anyone know how to limit it?
add_filter('appthemes_plupload_config', 'enable_plupload_multisel', 10 ,1);
function enable_plupload_multisel($app_plupload_config)
{
$app_plupload_config['plupload']['multi_selection'] = true;
return $app_plupload_config;
}