Support

Account

Home Forums General Issues error message field type Reply To: error message field type

  • Yessss!! Nice work, great to see that patched up.

    The best way to proceed with updates in the future is to upgrade to ACF v4 and purchase the Repeater Field plugin – the upgrade doesn’t require any work, just update as normal and install/enable the repeater field.

    However, for now you may wish to stick with v3 until the rest of the site is stable. If that’s the case, you’ll want to avoid updating ACF, so to make sure that nobody hits that button by accident you can drop this code into the main ACF plugin file:

    add_filter('site_transient_update_plugins', 'c15465_remove_update_nag');
    function c15465_remove_update_nag($value) {
     unset($value->response[ plugin_basename(__FILE__) ]);
     return $value;
    }

    This is certainly not a good permanent solution, but it might spare you some grief in the near future.

    Oh, and here… http://www.advancedcustomfields.com/add-ons/repeater-field/. It’s a tiny one-time purchase and you can use it on as many sites as you want! Plugins like this and their devoted developers (@elliot) are well worth supporting (in my opinion).

    Good luck out there 🙂