Support

Account

Home Forums Add-ons Repeater Field Repeater meta_value count in wp_postmeta not increasing Reply To: Repeater meta_value count in wp_postmeta not increasing

  • Hi @hillbilly

    Good question – this is why ACF is wrapped in a class and all actions / filters are referenced as an array with $this and the function name.

    This is a safe guard that assures no conflicts happen between acf and any other plugin.

    I suspect the real issue is the WPSC plugin has written their save_function like so:

    
    if( ! is_WPSC_save )
    {
        return false;
    }
    

    This will most likely prevent any further save_post actions from working!

    Thanks for your investigation, but I think the author of WPSC should also have a look at this issue to see if they can solve it from their end.

    Cheers
    E