BuddyDev

Search

Replies

  • Participant
    Level: Initiated
    Posts: 2
    James coffman on #42905

    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 );’