• Resolved canterburyboho

    (@canterburyboho)


    This error shows in the backend when I attempt to use the multi-date picker with a custom post type.

    /var/www/html/wp-content/plugins/acf-multi-dates-picker/fields/class-pdg-acf-field-multi-dates-picker-v4.php on line 294

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi i had the same issue and i solved it by modifying the plugin code.
    If you have any experience got to line 294 and edit the following

    	function format_value( $value, $post_id, $field )
    	{
    		$value = (array) json_decode($value,true);
    		$value = implode(',', $value);
    		return $value;
    	}

    Hope it helps.

    Plugin Author devnanguo

    (@devnanguo)

    Thank you ! I fixed the bug.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Code Error’ is closed to new replies.