Support

Account

Forum Replies Created

  • Curious as to whether this is possible.

  • Thanks for the reply Jonathan, I suspected that was the case with this.

  • I have some bad news, the issue of not saving is again affecting some of the fields I set up with the CPT called “work”. I’ve tried renaming these fields, and the issue still comes up.

    Again, I have prepared a short videocast showing the issue: http://screencast.com/t/LoOZUXydLHn

    At this stage, I really can’t go further with this product until I can resolve this issue as it is really affecting my ability to work on this in a timely manner. It’s strange, as I have used ACF many times before without any issues.

  • I surprised myself! 😛

    1. Does this only happen on terms? Not posts/pages?

    Initially happened on everything, cpts and terms. Since I have remade the site, it still happens on cpts (have a cpt called work) on some custom field names. For instance, I renamed a repeater field called “c_states” to “states” so it would work.

    2. Do you have any other field or maybe post/page with the same “slug” (plate)?

    My initial thing to check. Haven’t been able to find that.

    3. Did you create these fields directly from within wp-admin? (Not php or json).

    Created the fields directly in wp-admin

    4. If you actually check your database wp_options table for this value, does it say “something”?

    This is what it looks like in the DB: http://screencast.com/t/Ku4Ud59Fmaj

  • Thanks for the response Elliot, unfortunately in our situation that did not solve the issue.

    Did some further testing (switching plugins themes) and eventually narrowed it down to an action hook for admin_enqueue_scripts. We load css on the backend for some of the content editor forms, and with the issue happening with ACFs enqueue’s we were able to finally find the issue.

    At the moment we’ve just commented out our own enqueue hook as we’re on the development server. Will provide the code of how we’re doing this, but we’ve never had an issue with this before (either with ACF nor other plugins).

    function load_theme_admin_scripts($hook) {
    	// Admin CSS
    	wp_enqueue_style('theme_admin_css', get_template_directory_uri() . '/library/css/admin_css.css', false, '1.0', 'all');
    
    }
    add_action( 'admin_enqueue_scripts', 'load_theme_admin_scripts' );
    
Viewing 5 posts - 1 through 5 (of 5 total)