Replies
Viewing 1 post (of 1 total)
Problem solved after trial and error. Add following to functions.php of your theme. Only downside is that it is Theme specific, meaning it will only work for the current theme, if you switch themes, readd to functions.php
‘function filter_site_upload_size_limit( $size ) {
$size = 1024 * 70000;
return $size;
}
add_filter( ‘upload_size_limit’, ‘filter_site_upload_size_limit’, 20 );’
Viewing 1 post (of 1 total)