• stianjaco

    (@stianjaco)


    I wanted to add a big gallery with about 100 pictures. But whenever I press save, all the attachments dissapear?? After some time searching, I found that WordPress has a custom meta limit. So I tried this code:
    add_filter( ‘postmeta_form_limit’ , ‘customfield_limit_increase’ );
    function customfield_limit_increase( $limit ) {
    $limit = 200;
    return $limit;
    }
    but that did’t help either.. any suggetions ?

    http://wordpress.org/extend/plugins/attachments/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Jon Christopher

    (@jchristopher)

    Attachments saves all it’s data in one record, so that limit shouldn’t come into play… I’ll do some testing on my end and try to replicate the issue but in the meantime, do you think you can try to see if other areas are affected as well? For instance updating the content in the editor before saving as well, is that change lost too?

    Thread Starter stianjaco

    (@stianjaco)

    Everything else saves (title, text, categories)

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Problem with too many images’ is closed to new replies.