• Hi. Thanks for a wonderful plugin.

    How about WordPress 5.0 and Gutenberg compatibility, is it safe to update?

    Kind regards
    Bjarne

Viewing 7 replies - 1 through 7 (of 7 total)
  • Hi,

    From what I can see right now, the page template conditional for created field groups doesn’t work. The field group/metabox title is always displayed on any page, no matter what page template is selected, and yet the field group/metabox content is empty.

    Otherwise I haven’t found any issue with WP5.0/Gutenberg.

    @elliotcondon Could this get fixed please?

    Regards,

    Oliver

    @elliotcondon Actually, the above issue is caused when using any additional AND conditionals for field group. (Haven’t tried ORs though.)

    Here is a PHP export of the field group provided by the plugin:

    if( function_exists('acf_add_local_field_group') ):
    
    acf_add_local_field_group(array(
    	'key' => 'group_5bfc0606537a0',
    	'title' => 'Test WP5.0',
    	'fields' => array(
    		array(
    			'key' => 'field_5bfc061307f28',
    			'label' => 'Just testing',
    			'name' => 'just_testing',
    			'type' => 'text',
    			'instructions' => '',
    			'required' => 0,
    			'conditional_logic' => 0,
    			'wrapper' => array(
    				'width' => '',
    				'class' => '',
    				'id' => '',
    			),
    			'default_value' => '',
    			'placeholder' => '',
    			'prepend' => '',
    			'append' => '',
    			'maxlength' => '',
    		),
    	),
    	'location' => array(
    		array(
    			array(
    				'param' => 'post_type',
    				'operator' => '==',
    				'value' => 'page',
    			),
    			array(
    				'param' => 'page_type',
    				'operator' => '==',
    				'value' => 'front_page',
    			),
    		),
    	),
    	'menu_order' => 0,
    	'position' => 'side',
    	'style' => 'default',
    	'label_placement' => 'top',
    	'instruction_placement' => 'label',
    	'hide_on_screen' => '',
    	'active' => 1,
    	'description' => '',
    ));
    
    endif;
    Plugin Contributor Elliot Condon

    (@elliotcondon)

    Hi all.

    Thanks for the question and bug report.

    We area ware of these issues and will be sure to release an update prior to WP 5.0 release.

    @elliotcondon I can feel your pain… ?? I also experience so many issues with Gutenberg… Thank you for looking into these!

    CreaFlow

    (@jansesberger)

    Hi,

    i’m also experiencing problems with Gutenberg and ACF. When the ACF metabox is on the right side in the document panel, entered field values won’t save. Funnily though it is working, when i let those fields appear after the content on the bottom of the page.

    Hopefully you can do something soon.. Thanks!

    • This reply was modified 6 years ago by CreaFlow.

    @jansesberger Same here. Thanks for the hint to move them after the content.

    @elliotcondon I love the ACF and used it in many sites. WordPress is updated from 5.0 to 5.1 but no updates on ACF. Eagerly waiting for ACF compatible to WP 5.1

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘ACF and WordPress 5.0 / Gutenberg?’ is closed to new replies.