• Resolved Byron Hasegawa

    (@byron222)


    The ACD field cant save when I create a post with my ‘author’ role user.

    This is my Situation.
    WP version: 6.1
    ACF version: 6.0.4
    Activate Theme: Twenty Twenty-Three v.1.0

    Only activate the ACF plugin.

    If I use the ‘Classic Editor’ plugin, it works normally without a problem…
    Maybe ‘Gutenberg + ACF’ is the problem…

Viewing 1 replies (of 1 total)
  • Plugin Support ACF Support

    (@acfsupport)

    Hi @byron222

    ACF Support Team here. This forum is generally used by ACF users to help each other out.

    You can update the capability setting using the acf_update_setting() function as shown below:

    add_action( 'acf/init', 'my_acf_init_settings' );
    function my_acf_init_settings() {
    	// https://www.advancedcustomfields.com/resources/acf-settings/
    	acf_update_setting( 'capability', 'author' );//Default is manage_options
    }

    To make the changes persist even with updates, you can place the code in your child theme.

    if you need further clarification, please create a ticket using our ?support form and we can look into it further

Viewing 1 replies (of 1 total)
  • The topic ‘Dont work with my ‘author’ role user’ is closed to new replies.