Plugin / Advanced Custom Fields: Extended

ACF Extended

Changelog

Changelog

0.8.2

  • Dynamic Forms: Fixed error position ‘below’ not working on some specific fields (Select)
  • Dynamic Forms: acfe_form_is_front() & acfe_form_is_admin() helpers now also check native ACF Form screen
  • Dynamic Forms: Added action alias name setting for each action allowing better targeting when using hooks
  • Dynamic Forms: Reworked forms actions hooks and added ‘Advanced’ tab for each action with code examples
  • Field: Groups/Clones – CSS integration tweaks are now optional (Thanks @Brandon A.)
  • Field: Groups/Clones – Added “Seemless style” setting which enable better CSS integration (remove borders and padding)
  • Field: Code Editor – Added Field (use the WP Core CodeMirror script)
  • Field: Taxonomy Terms – Added advanced settings allowing specific taxonomies or specific terms in the field (with level or parent/child dependencies)
  • Field: reCaptcha – Fixed a bug where reCaptcha would not work properly
  • Field: Flexible Content – Updated JS filter acf.doAction('acfe/fields/flexible_content/preview', response, flexible.$el, $layout, ajaxData) & moved it after preview HTML parse
  • Field: Flexible Content – Updated JS filters & added variations acf.doAction('acfe/fields/flexible_content/preview/name=my_flexible&layout=my_layout', response, flexible.$el, $layout, ajaxData)
  • Field: Flexible Content – Fixed “Remove Collapse” setting not working on newly added layout (Moved RemoveCollapse from acf-extended-fc-control.js to acf-extended-fc.js (acfe/flexible/layouts))
  • Fields: Fields are now registered using acf_register_field_type(). This will allow developers to use acf_get_field_type('acfe_field')
  • Fields settings: Bidirectional – Added filter which allow to force related field to be updated when migrating from already existant values
  • Fields settings: Bidirectional – Added filter('acfe/bidirectional/force_update/name=my_field', true, $field, $post_id) (available with /type & /key) (Feature request: @anjanphukan)
  • Field Groups: Fixed CSS which wrongly hide instructions when there’s no field label (Thanks @Damien C.)
  • Field Groups: Third Party – Added PHP filter to change source column output filter('acfe/field_groups_third_party/source', $source, $post_id, $field_group)
  • General: Added filter('acfe/field_wrapper_attributes/type=$field_type', $wrapper, $field) (also with /name & /key variations)
  • General: Splitted CSS for front-end/back-end
  • General: Fixed ACF Setting Tab “Module: Taxonomies Enhancements” title (thanks @doublesharp)

0.8.1

  • Field: Advanced Link – Added instructions to add custom fields in the field administration
  • Field: Advanced Link – Added filters acfe/fields/advanced_link/fields/name=my_field & acfe/fields/advanced_link/fields/key=field_xxxxxxx
  • Field: Advanced Link – Changed values keys to: type, url, post, title & target
  • Field: Button – Updated JS hook acf.doAction('acfe/fields/button/before_ajax', $el, data)
  • Field: Button – Updated JS hook acf.doAction('acfe/fields/button/ajax_success', response, $el, data)
  • Field: Column – Fixed endpoint column not correctly closing the row
  • Field: Flexible Content – Added JS hook acf.doAction('acfe/fields/flexible_content/before_preview', $el, data)
  • Field: Flexible Content – Added JS hook acf.doAction('acfe/fields/flexible_content/preview', response, $el, data)
  • Field: Flexible Content – Clone/Copy/Paste – Fixed a problem where new select option values weren’t properly duplicated (thanks @chrisschrijver)
  • Module: Dynamic Forms – Advanced settings: Fixed prepare_field on form front
  • Module: Dynamic Forms – Fixed a compatibility problem if a dynamic form was named form
  • Module: Dynamic Forms – Rename field class to input class
  • Module: Dynamic Forms – Fixed a problem where native ACF Form would not properly work (thanks @maximelessard)
  • Module: Dynamic Forms – Added Javascript to avoid re-submission on page refresh when ‘Hide form’ is set to ON

0.8

  • Module: Dynamic Forms – Added module. Forms UI available under ACF menu
  • Module: Dynamic Forms – Added PHP helper acfe_form('my_form_name') & acfe_form(188) to display a form
  • Module: Dynamic Forms – Added shortcode [acfe_form name="my_form_name"] & [acfe_form ID="188"] to display a form
  • Module: Dynamic Forms – Added setting to disable Dynamic Forms: acf_update_setting('acfe/modules/dynamic_forms', false)
  • Module: Dynamic Forms – Added action('acfe/form/validation', $form, $post_id) & action('acfe/form/validation/name=form_name', $form, $post_id) to validate form before submission. get_field(), have_rows(), get_sub_field() functions can be used.
  • Module: Dynamic Forms – Added acfe_add_validation_error('field_name_or_key', 'message') helper to add error on specific field during the validation
  • Module: Dynamic Forms – Added action('acfe/form/submit', $form, $post_id) & action('acfe/form/submit/name=form_name', $form, $post_id) to add custom action on submission
  • Module: Dynamic Forms – Added 8 new hooks per form action allowing developers to customize each action
  • Field: Added Dynamic Form Select field
  • Field: Added Google reCaptcha field (compatible v2 & v3)
  • Field: Google reCaptcha – Added global setting: acfe/field/recaptcha/site_key (API site key)
  • Field: Google reCaptcha – Added global setting: acfe/field/recaptcha/secret_key (API secret key)
  • Field: Google reCaptcha – Added global setting: acfe/field/recaptcha/version (v2 or v3)
  • Field: Google reCaptcha – Added global setting: acfe/field/recaptcha/v2/theme (light or dark)
  • Field: Google reCaptcha – Added global setting: acfe/field/recaptcha/v2/size (normal or compact)
  • Field: Google reCaptcha – Added global setting: acfe/field/recaptcha/v3/hide_logo (true or false)
  • Field: File – Removed the native ‘No file selected’ text
  • Field: File & Image – Added ‘Uploader type’ setting to choose which uploader to use (Basic or Media)
  • Field: Post Type Selection – Code has been reworked. The field is now compatible with all select, checkbox & radio settings
  • Field: Taxonomy Selection – Code has been reworked. The field is now compatible with all select, checkbox & radio settings
  • Field: Button – Code has been reworked & added Ajax call setting
  • Field: Button – Added Ajax action: ‘acfe/fields/button’, POST parameters: $post_id, $field_key, $field_name
  • Field: Button – Added Javascript Ajax action: ('acfe/fields/button/before_ajax', this.$el)
  • Field: Button – Added Javascript Ajax action: ('acfe/fields/button/ajax_success', response, this.$el)
  • Field: Slug – Code has been reworked
  • Field: Dynamic Message – Added instructions & code example in the field setting view
  • Field: Column – Added Field
  • Field: Post Status Selection – Added Field
  • Field: User Roles Selection – Added Field
  • Field: Hidden Input – Added Field
  • Field: Advanced Link – Added Field. Added filter('acfe/fields/advanced_link/fields', $fields, $field, $link) allowing developers to add custom field to the modal
  • Field: Taxonomy Terms – Added Field
  • Field: Group – Added Modal Edition setting allowing users to edit group values in a modal
  • Field: Group – Added CSS fixes for better integration
  • Field: Clone – Added Modal Edition setting allowing users to edit clone values in a modal (Only in group mode)
  • Field: Clone – Added CSS fixes for better integration
  • Field: Textarea – Added Code mode setting to switch font family to monospace and allow tab indent
  • Field: Select – Added placeholder setting when allow null is activated
  • Field: Flexible Content – Added ‘Remove Collapse Action’ setting
  • Field: Flexible Content – Added filter('acfe/flexible/lock', true, $field) to lock flexible content layouts (disable sortable)
  • Field: Flexible Content – Added filter('acfe/flexible/lock/name=my_flexible', true, $field) to lock flexible content layouts (disable sortable)
  • Field: Flexible Content – Added filter('acfe/flexible/remove_actions', true, $field) to remove the “Add layout” button
  • Field: Flexible Content – Added filter('acfe/flexible/remove_actions/name=my_flexible', true, $field) to remove the “Add layout” button
  • Field: Flexible Content – Clone & Copy/Paste functions are now compatible with min/max settings for each layout
  • Field: Flexible Content – Added action('acfe/flexible/render/before_template', $field, $layout, $is_preview) to add wrapper around the template render (with 6 variations)
  • Field: Flexible Content – Added action('acfe/flexible/render/after_template', $field, $layout, $is_preview) to add wrapper around the template render (with 6 variations)
  • Field: Flexible Content – Fixed text-align:center applied to placeholder css
  • Field: Flexible Content – Fixed Style/Script render filters when returning a full URL
  • Field: Flexible Content – Fixed a bug where the layout Title Edition input could disappear when clicking on the handle
  • Field: Flexible Content – Fixed a bug where the close button would not appear after adding a new layout
  • Field: Repeater – Added Stylised button setting
  • Field: Repeater – Added CSS fixes when table is empty
  • Field: Repeater – Added filter('acfe/repeater/lock', true, $field) to lock repeater rows (disable sortable)
  • Field: Repeater – Added filter('acfe/repeater/lock/name=my_repeater', true, $field) to repeater rows (disable sortable)
  • Field: Repeater – Added filter('acfe/repeater/remove_actions', true, $field) to remove the “Add row” button
  • Field: Repeater – Added filter('acfe/repeater/remove_actions/name=my_repeater', true, $field) to remove the “Add row” button
  • Field: Fixed fields label CSS when label is empty (top & left placement)
  • Fields: “Advanced Validation” settings are now disabled by default. To display them, the “Advanced settings” must be turned ON in the field group
  • Fields: Added “Advanced Settings” allowing administrator to set custom field properties based on the current screen (administration/front-end). “Form settings” must be turned ON in the field group
  • Fields: Added Hide Label setting (in the Advanced Settings)
  • Fields: Added Hide Field setting (in the Advanced Settings)
  • Fields: Added filter('acfe/load_field', $field) to filter field settings everywhere but not in field group & tools management
  • Fields: Added filter('acfe/load_field_front', $field) to filter field settings in the front-end (and ajax coming from front-end) but not in field group & tools management
  • Fields: Added filter('acfe/load_field_admin', $field) to filter field settings in the administration (and ajax coming from administration) but not in field group & tools management
  • Field Groups: Instructions Placement – Added “Tooltip” placement for instructions
  • Field Groups: Third Party – Added PHP / Json Export & Sync actions
  • Field Groups: Third Party – Added Source column
  • Field Groups: Fixed potential undefined index in location column
  • Location: Old Location “Post Type Archive” & “Taxonomy Archive” (in the admin list) have been renamed “Post Type List” & “Taxonomy List”
  • Location: Post Type List/Taxonomy List – Fixed Image & File Upload fields being forced on basic mode (Thanks @dominikkucharski)
  • Location: New Location “Post Type Archive” creates an option page under post types menu when argument acfe_admin_archive is set to true (also available in Dynamic Post Type)
  • Module: Settings – Added ACF Extended tab to list the plugin’s current settings
  • Module: Settings – Fixed save_json setting being incorrectly displayed in the ACF Setting tab
  • Module: PHP Sync – Fixed a problem where field group would not be recognized as loaded in PHP if Json AutoSync is also activated
  • Module: PHP Sync – Renamed PHP Sync settings to acfe/php, acfe/php_save, acfe/php_load, acfe/php_found
  • Module: Dev Mode – Added mode which replace the WP Post Meta box with more details data (in posts & terms). It also enable SCRIPT_DEBUG. Can be activated using acf_update_setting('acfe/dev', true) or define('ACFE_dev', true)
  • Module: Dynamic Taxonomy – Added missing meta_box_cb setting (thanks @DavidGMiles)
  • Module: Options – Fixed potential validation problem
  • General: Improved ACF Extended modal CSS style & Added Modal inside modal overlay

0.7.9.9.9

  • Field: Flexible Content – Fixed Copy/Paste function doing incorrect checks on radio, checkboxes and select inputs
  • Field Group: Fixed field ‘Data’ button being displayed on newly created fields

0.7.9.9.8

  • Field: Flexible Content – Fixed Clone & Copy/Paste functions in multi level flexible content (flexible inside flexible inside flexible…) (Thanks @AsmussenBrandon)
  • Field: Flexible Content – Fixed CSS border glitch

0.7.9.9.6

  • Field: Flexible Content – Fixed Clone & Copy/Paste functions for accordions fields (Thanks @Damian P.)
  • Field: Flexible Content – Fixed Clone & Copy/Paste functions for FontAwesome fields (Thanks @Damian P.)
  • Field: Flexible Content – Close Button setting is now always available and is not conditional anymore
  • Field: Flexible Content – Render Template/Style/Script path now supports parent/child theme. If a file is found in the child theme, it will be included. Otherwise it will be checked against the parent theme path (Feature Request: @r3dridl3)
  • Field: Flexible Content – Fixed Layout Title Edition not working in some rare cases (Thanks @Damian P.)
  • Field: Post Types & Taxonomies Select – Fixed two PHP noticed
  • General: Added ACF Extended GitHub repository URL in the readme

0.7.9.9

  • Field: Flexible Content – Settings are now dynamic (and not global anymore) (Thanks @Val)
  • Field: Flexible Content – Added CSS class on cloned layouts
  • Field: Flexible Content – Removed esc_attr() from Layout Title Edition, allowing icons to be displayed correctly
  • Field: Flexible Content – Fixed potential duplicated clone buttons in specific cases (Thanks @chrisschrijver)
  • Field: Flexible Content – Added “Layout Placeholder” setting, disabled by default (feature request: @Matt H.)
  • Field: Flexible Content – Added “Layout Title Edition” setting, disabled by default
  • Field: Flexible Content – Fixed Enter key closing modal in textarea inputs (thanks @dominikkucharski)
  • Field: Flexible Content – Fixed Clone & Copy/Paste functions on select2 fields (Thanks @AsmussenBrandon)
  • Field: Flexible Content – Multiple Layouts Categories are now allowed in the Selection Modal, using pipes “|”. ie: Main|Shopping|Interactive (Feature request: @Damian P.)
  • Field: Flexible Content – Fixed a problem where “Min/Max Layouts” limitation (setting per layout) weren’t working properly when using the Layout Selection Modal (Thanks: @Matt H.)
  • Module: Taxonomy – Added Polylang compatibility when translating a term (Thanks @jaakkosaarenketo)
  • Module: Taxonomy – Fixed spacing when a meta field has no label
  • Field: Bidirectional – Values are now saved as string when Post Object & User “Allow multiple values” setting is disabled (Thanks @screamingdev)
  • Fields Groups: Added word-break on field description
  • Fields Groups: Fixed PHP Notice when group location is an attachment (Thanks @herrschuessler)
  • General: Added multiples settings in order to disable specific plugin’s modules. See FAQ (Feature request: @Matt H.)
  • General: Added ACFE_VERSION constant to force cache flush on plugin update
  • General: PHP Strict Type checks globally (Thanks @Liam S.)
  • General: Added Flexible Content Dynamic Preview Video in readme

0.7.9.4

  • Module: Author Box – Hotfix

0.7.9.3

  • Field: Flexible Content – Added filter('acfe/flexible/thumbnail/name={flexible:name}', $thumbnail, $field, $layout) to change all layouts thumbnails (must return attachment ID or URL) (Thanks @Dam)
  • Field: Flexible Content – Fixed $is_preview not being available during the Dynamic Layout Preview (thanks @Dam)
  • Module: Author Box – Added custom authors roles being able to be selected in the Author Box (Thanks @Andremacola)
  • General: Fixed Readme typos

0.7.9

  • Field: Flexible Content – Added Inline Layout Title Edition
  • Field: Flexible Content – Added Auto scroll + Modal edit on One Click layout
  • Field: Flexible Content – Removed native “Controls Icons” visibility being visible on all sub flexible content fields (better readability)
  • Field: Flexible Content – Added WP Unslash on preview values to prevent backlashes on values (thanks @Dam)
  • Field: Flexible Content – Added compatibility for layouts that have been synced and not manually created (thanks @T. Dubois)
  • Field: Flexible Content – Copy/Paste functionality is now a Flexible Content setting (Default: Disabled) (Feature request: @louiswalch)
  • Field: Flexible Content – ‘Close Button’ (collapse) on layouts is now a Flexible Content setting(Default: Disabled)
  • Field: Flexible Content – Layouts Thumbnails aspect ratio are now locked (base ratio: 450px * 200px) (Feature request: @louiswalch)
  • Field: Flexible Content – Dynamic Layout Preview refresh has been optimized. The preview content is now kept instead of being reset
  • Field: Flexible Content – Dynamic Layout Preview style & script enqueue now use wp_enqueue_style() & wp_enqueue_script()
  • Field: Flexible Content – Modal Edition – ‘Enter’ & ‘ESC’ keys now close Modals (instead of submitting the form)
  • Field: Flexible Content – Added action('acfe/flexible/enqueue', $field, $is_preview) to enqueue new style/script (back & front) (with 6 variations)
  • Field: Flexible Content – Added filter('acfe/flexible/layout/thumbnail/layout={layout:name}', $thumbnail, $field, $layout) to change layout thumbnail (must return attachment ID or URL) (with 3 variations)
  • Field: Flexible Content – Added action('acfe/flexible/preview', $field, $layout) to change Dynamic Layout Preview content (with 6 variations)
  • Field: Flexible Content – Added filter('acfe/flexible/render/template', $template, $field, $layout, $is_preview) to change Layout Render: Template Path (with 6 variations)
  • Field: Flexible Content – Added filter('acfe/flexible/render/style', $style, $field, $layout, $is_preview) to change Layout Render: Style Path (with 6 variations)
  • Field: Flexible Content – Added filter('acfe/flexible/render/script', $script, $field, $layout, $is_preview) to change Layout Render: Script Path (with 6 variations)
  • Field: Flexible Content – Added filter('acfe/flexible/placeholder/icon', $class, $field) to change the Placeholder Button Dashicon class (default: ‘dashicons dashicons-edit’) (with 3 variations)
  • Module: Dynamic Options Page – Fixed ‘Undefined $post_id’ PHP warning in Dynamic Options Page screen
  • Module: Dynamic Options Page – Fixed registration order for child options pages (thanks @Val)
  • Module: Dynamic Post Type – Fixed undefined ID php Warning on edit screen when Dynamic Post Type is registered locally (thanks @Val)
  • Module: Dynamic Taxonomies – Taxonomy name character limit has been fixed to 32 instead of 20 (thanks @Damian)
  • Module: Dynamic Taxonomies – ‘Add New’ button is now based on Taxonomy capabilities & Taxonomy Label (thanks @absolute_web)
  • Module: Author – Field groups ‘Hide on screen’ is now taken in account (thanks @louiswalch)
  • Tools: Dynamic Taxonomies Import – Fixed ‘undefined index’ PHP warning on taxonomy import (thanks @Val)

0.7.8

  • Field: Flexible Content – Removed ‘Layouts Thumbnail as Preview’ setting. You should now use ‘Layouts: Dynamic Preview’
  • Field: Flexible Content – Added ‘Layouts: Dynamic Preview’ (‘Layouts: Render’ setting must be turned ON)
  • Field: Flexible Content – Reworked layouts settings order (better readability)
  • Field: Flexible Content – Modal Edition title now removes eventual extra HTML tags (thanks @Thomas D.)
  • Field: Flexible Content – Modal Edition CSS has been fixed on Gutenberg Editor view (thanks @Val)
  • Field: Flexible Content – Fixed ‘Empty Message’ placeholder setting using wrong __() function (thanks @illiminal)
  • Field: Flexible Content – Removed query vars from get_flexible(). Global variables $layout & $field can be used in the template to retrieve current settings
  • Field: Flexible Content – Added global variable $is_preview which is true when the template file is called as a layout preview
  • Field: Flexible Content – get_flexible() now uses wp_enqueue_style() & wp_enqueue_script() when rendering on front-end
  • Field: Image – ‘No image selected’ text has been removed
  • Module: Dynamic Post Types/Taxonomies – Fixed ‘index key not found’ PHP warning (thanks @Val)
  • Module: Dynamic Post Types/Taxonomies/Options & Block Types – Added edit_posts capabilities matching the ACF capability setting
  • Tools: Dynamic Post Type Import – Fixed ‘capabilities key not found’ PHP warning during import process (thanks @Val)
  • General: Improved Metaboxes CSS on Gutenberg Editor views
  • General: Reworked JS enqueue. Flexible Content JS is now excluded from ACF Field Groups views

0.7.5.5

  • Field: Flexible Content – Completely revamped Flexible Content JavaScript for a more solid & optimized code
  • Field: Flexible Content – Automatically scroll to the layout position when adding a new layout
  • Field: Flexible Content – Automatically open layout edition modal when adding a new layout
  • Field: Flexible Content – Added ‘Close’ (collapse) button at the bottom of layout when opened
  • Field: Flexible Content – Fixed typo error in the ‘Paste Layouts’ prompt
  • Field: Flexible Content – Added Flexbox CSS compatibility
  • Field: Flexible Content – Better Multi Modal Handling (modal inside a modal inside a modal…)
  • Field: Flexible Content – Better Field Validation Handling inside layouts
  • Field: Flexible Content – Added has_flexible($field_name, $post_id) front-end function to check if rows exists
  • Field: Flexible Content Control – Automatically scroll to the new layout position when using ‘Clone Layout’
  • Field: Flexible Content Control – Fixed ‘Clone Layout’ when an already cloned layout had an ‘Editor’ field
  • Field: Flexible Content Control – Fixed ‘Clone Layout’ unwanted icon when a layout had an ‘Accordion’ field
  • Field: Advanced Validation/Update – The settings are now hidden on non-necessary fields (Clone, Flexible content, Tabs etc…)
  • Module: Dynamic Options Pages – Now forces a unique slug to avoid duplication
  • Module: Dynamic Post Types/Taxonomies/Options Pages & Block Types – Manual Json export has been removed from possible actions on the trashed status screen
  • Module: Options – Fixed a CSS enqueue problem introduced in last patch
  • Location: Post Type Archive & Taxonomy Archive options now use ACF multi-languages settings
  • General: Removed jQuery UI & jQuery UI Dialog dependency (ACF Extended now uses its own lightweight modal system)

0.7.5

  • Field: Flexible Content – Added ‘Control’: Copy, Paste & Duplicate Layouts on the fly using icons in the layouts handle
  • Field: Flexible Content – Control: Copy & Paste all layouts on the fly using the new icon next to ‘Add row’ button (can be used to transfer layout data from one page to an another)
  • Field: Flexible Content – Added ‘Modal: Edition’ setting, allowing to edit layouts in a modal
  • Field: Flexible Content – Added ‘Layouts Previews’ setting, allowing to display the layout thumbnail as preview (collapsed state)
  • Field: Flexible Content – Added filter('acfe/flexible/previews/name=$field_name', $thumbnails, $field) allowing to override the preview image for each layout (usage example is available in the FAQ)
  • Field: Flexible Content – Added filter('acfe/flexible/previews/key=$field_key', $thumbnails, $field) allowing to override the preview image for each layout (usage example is available in the FAQ)
  • Field: Flexible Content – When using get_flexible(), get_query_var('acf_flexible_field') & get_query_var('acf_flexible_layout') can be used in the template file to retrieve current field & layout informations
  • Field: Flexible Content – When using get_flexible(), an HTML comment has been added for each rendered templates
  • Field: Flexible Content – Fixed the possibility to render the same layout multiple times when using get_flexible() (thanks to @Val_Pellegrin)
  • Field: Flexible Content – get_flexible() now enqueue each style.css & script.js only one time on the whole page
  • Field: Flexible Content – Added more width spacing for the ‘Modal: Category’ checkbox (compatibility for small screens)
  • Tools: Added Export & Import Tools for Dynamic Post Types, Taxonomies, Block Types & Options Pages using Json files
  • Location: Post Type Archive & Taxonomy Archive now use field group location (High, Normal or Side) & field group style (WP Box or seamless) (Feature Request)
  • Module: Taxonomy – Added some spacing on the term edition screen (compatibility with YOAST/Rank Math metaboxes)
  • Module: Taxonomy – Fixed Edit Screen CSS for Repeaters & Groups (thanks to @Val_Pellegrin)
  • Module: Dynamic Taxonomies – Fixed ‘Post Type’ column when a post type does not exists anymore (thanks to @Val_Pellegrin)
  • Module: Dynamic Taxonomies – Fixed Single Posts per page, Orderby & Order
  • Module: Dynamic Post Types – Fixed ‘Taxonomies’ column when a taxonomy does not exists anymore (thanks to @Val_Pellegrin)
  • Module: Dynamic Post Types & Taxonomies – Fixed Admin Orderby, Order & Menu position which weren’t working properly (thanks to @Val_Pellegrin)
  • Module: Dynamic Post Types & Taxonomies – Fixed user Posts per page, Orderby & Order option screen which were forced (thanks to @Val_Pellegrin)
  • Field Groups: Hide ‘Category’ column if there’s no term
  • Misc: Added ‘Advanced Custom Fields’ tab in the WP ‘Add plugin’ page

0.7.0.3

  • Field: Flexible Content – ‘Modal: Title’ – The custom modal title now works correctly (thanks to Damian P.)
  • Field: Flexible Content – ‘Layouts State’ – Fixed a problem where layouts title were incorrect when forcing layouts state (thanks to Damian P.)
  • Compatibility: ACF Pro 5.7.13 – Fixed Archive Location ‘All’ PHP error (acf/location/rule_match filter)

0.7

  • Field: Flexible Content – Added ‘Stylised Button’ setting which automatically hide native ACF ’empty’ message and add style to ‘Add row’ button
  • Field: Flexible Content – Added ‘Hide Empty Message’ setting to hide native ACF ’empty’ message
  • Field: Flexible Content – Added ‘Empty Message’ text setting to change the native ACF ‘click the Add Row button below…’ message
  • Field: Flexible Content – Added ‘Layouts Thumbnails’ setting to add image thumbnails for each layout in the admin layout selection
  • Field: Flexible Content – Added ‘Layouts Render’ setting to add template, style & script file for each layout. Those settings can be then accessed on the front-end
  • Field: Flexible Content – Added get_flexible($selector, $post_id) and the_flexible($selector, $post_id) functions to automatically use the ‘Layouts Render’ settings in front-end
  • Field: Flexible Content – Added ‘Modal’ setting to change the layout selection into a proper modal in the administration
  • Field: Flexible Content – Added ‘Modal: Title’ setting to change the layout modal title
  • Field: Flexible Content – Added ‘Modal: Columns’ setting to change the layout modal columns grid. 1, 2, 3, 4, 5 or 6 columns available
  • Field: Flexible Content – Added ‘Modal: Categories’ setting to add a category for each layout in the layout modal
  • Field: Flexible Content – Added ‘Layouts State’ setting to force layouts to be collapsed or opened by default
  • Field: Flexible Content – Added ‘Button Label’ native compatibility fix to make it work with Dashicons (CSS to fix vertical alignment)
  • Field: Flexible Content – Added ‘One click’ hidden function. In the post administration, the ‘Add row’ button will add a layout without the selection modal if there is only one layout available in the flexible content
  • Field: Flexible Content – Note – The following settings: Layouts Thumbnails, Layouts Render & Modal Categories will be visible after saving field group
  • Module: Ajax Author – Fixed a bug where field groups ‘Hide on screen’ setting wasn’t applied on post administration
  • Module: Json AutoSync – Added “‘/acf-json’ folder not found” warning message if Json Sync is set in a field group and the ‘/acf-json’ folder doesn’t exists
  • Module: Taxonomy – Forced Tabs to be ‘Aligned Top’ in taxonomies fields (JS Only – ACF Bug) & added better CSS style (thanks to @Val_Pellegrin)
  • Module: Dynamic Post Type/Taxonomy/Option Page/Block Type – Hidden ‘Minor publishing’ panel (Save as draft, visibility…) to avoid confusion (thanks to @Val_Pellegrin)
  • Field: Bidirectional – Removed the ‘bail early if old values == new values’ check. This will let users convert existing fields with saved values into bidirectional without hassle (thanks to @Val_Pellegrin)
  • Field: Repeater – Added CSS spacing for block repeaters (better readability)
  • Field Group: Location ‘Taxonomy All’ – Fix native ACF location ‘Taxonomy == All’ matching all ACF Extended ‘Taxonomies Archives’ locations
  • Compatibility: Added compatibility fix for Rank Math SEO & YOAST Plugin to avoid the plugin’s post metabox being above ACF metaboxes

0.6.7.2

  • Field Group: Latest Post Type ‘All’ location fix was too sensitive. The location now works as expected
  • Module: Dynamic Post Types, Taxonomies & Block Types modules now set the ‘slug’ as disabled once it’s saved (to avoid duplication). A more flexible solution will be introduced later (WIP)

0.6.7

  • Module: Added Block Types Module. You can now add, edit and delete Block Types in the ACF > Block Types UI
  • Module: Added Options Pages Module. You can now add, edit and delete Options Pages in the ACF > Options UI
  • Field Group: Fixed Post Type ‘All’ location that could render field groups on internal/excluded post types

0.6.5

  • Field: Added ‘Featured Thumbnail’ setting on image fields. When selected, the field will update the post featured thumbnail
  • Field: Fixed bidirectional ON/OFF switch ‘width:auto’ causing warning with ACF Pro 5.8
  • Module: Options – Added support of Json value (introduced by WordPress 5.2 Health Check transients)
  • Module: Dynamic Post Type & Taxonomy – Removed ‘sanitize_title()’ pass on archive & single rewrite settings. Allowing rewrite slugs to be saved as: ‘prefix1/prefix2’
  • General: Added Gutenberg CSS on post metaboxes. More contrast for better metaboxes integration & visibility

0.6.3

  • Module: Dynamic Post Type & Taxonomy now deregister post types /taxonomies that have been deleted (or trashed) via the Tools > Post Types / Taxonomies
  • Module: Dynamic Post Type & Taxonomy now register post types / taxonomies in ASC order
  • Module: Dynamic Post Type – Fixed a bug where hierarchical post types had a query error in the admin archive
  • General: Improved the ACF Pro dependency style in plugins list when ACF Pro isn’t activated
  • Plugin: Readme – Reworked structure
  • Plugin: Readme – Added Supporters section
  • Plugin: Readme – Trying to implement emojis ✌

0.6.1

  • Admin: Re-introduced ‘Options’ admin screen under Settings > Options. Code has been completely refactored using native WP List Table. New features: Searchbox, item per page preference (default: 100), sortable columns, bulk delete and ability to edit serialized values.

0.6.0.2

  • Field Group: Lowered ‘Field Group Data’ Metabox priority which was too high and was displayed above fields.

0.6.0.1

  • General: Fixed backward compatibility for ACF Pro 5.7.10. The function: acf_add_filter_variations() was causing problems.
  • Admin: Temporarily removed the ‘Options Beta’ admin screen. Still needs some works. (thanks to @DamChtlv)

0.6

  • Field Group: New location available – Post type archive (under Post type). Field group will be displayed on post type list view, as a sidebar. Fields will be saved in the option: {post_type}_options. Frontend usage example: get_field('my_field', 'page_options').
  • Field Group: New location available – Taxonomy archive (under Taxonomy). Field group will be displayed on taxonomy list view, as a sidebar. Fields will be saved in the option: tax_{taxonomy}_options. Frontend usage example: get_field('my_field', 'tax_category_options').
  • Taxonomies: Taxonomies list & edit views have been tweaked for a more consistent administration experience, using CSS/JS only. Views are now similar to post type edition screens.
  • Field Groups: Added a ‘Third party’ status (just like ‘Sync available’) in order to display local field groups thats are loaded by ACF, but not available in the ACF field group administration. Example: a field group is registered locally in the functions.php file.
  • Dynamic Post Type: Added a configuration button next to the post type title, if the post type was generated by the Dynamic Post Type tool.
  • Dynamic Taxonomy: Added a configuration button next to the taxonomy title, if the taxonomy was generated by the Dynamic Taxonomy tool.
  • Field Groups: Better ‘Load’ column data source. Now display: DB, Json or PHP.
  • Field Groups: Now forcing Json / PHP Sync if local files are loaded by ACF. In order to disable it, and if the setting is already enabled, you must manually delete the group_xxxxxxxxx file in your theme folder. This behavior is applied to avoid any data desynchonization.
  • Field: Fixed a PHP notice in the Advanced Validation setting update.
  • Field Groups: Taxonomy acf-field-group-category – Better exclusion from ACF taxonomy selection (location & fields)

0.5.8.1

  • Plugin: Less aggressive ACF Pro check on activation. Now displaying a notice (allowing pre-activation of ACF Extended)
  • Plugin: Readme text fix

0.5.8

  • Field: Added Bidirectional setting for the following fields: relationship, post object, user & taxonomy terms
  • Module: Added ‘Ajax Author’ field to replace the native WP Author Meta Box
  • Module: Dynamic Post Type & Taxonomy – Better exclusion from ACF post types selection (location & fields)
  • General: Fixed ACF Select2 CSS to fit ACF input styles (border-radius, border-color & line-height)
  • General: Renamed ACF-Extended assets for better readability in the browser console resources tab
  • Compatibility: Removed the Taxonomy Order submenu created under ACF for the taxonomy ‘Field Group Category’ by the plugin ‘Category Order and Taxonomy Terms Order’

0.5.5.1

  • Module: Dynamic Taxonomy – Fixed Terms PHP warning
  • General: Plugin readme

0.5.5

  • Module: Added Dynamic Post Type module
  • Module: Added Dynamic Taxonomy module
  • Admin: Added WP Options page
  • Field: Added Post Type Selection field
  • Field: Added Taxonomy Selection field
  • Field: Added Slug field
  • Field Groups: Fixed ‘no field groups found’ wrong colspan
  • General: Reworked plugin folders and files hierarchy

0.5.2.3

  • Field Groups: Fixed unused category column on Field Groups Sync page
  • Fields: Fixed subfields ‘ghost’ acfcloneindex saved when duplicating flexible content (thanks to @AsmussenBrandon)

0.5.2.1

  • Field Group: Fixed Left Label Placement overwriting existing field groups (thanks to @AsmussenBrandon)

0.5.2

  • Fields: Added new dynamic message field
  • Fields: Added new button field
  • General: Added compatibility filters for ‘Post Types Order’ plugin
  • Plugin: Updated assets
  • Plugin: Reworked readme
  • Plugin: Fixed typos

0.5.1

  • Plugin: Added screenshots
  • Field Group: Moved Auto Sync Warnings below Auto Sync instructions
  • Field: Added filters variation to acfe/validate & acfe/update

0.5

  • Initial release

Ratings

5
24 reviews

Rating breakdown

Details Information

Version

0.8.2

First Released

18 Mar, 2019

Total Downloads

24,376

Wordpress Version

4.9 or higher

Tested up to:

5.2.4

Require PHP Version:

5.6 or higher

Tags

Contributors

Languages

The plugin hasn't been transalated in any language other than English.

DIRECTORY DISCLAIMER

The information provided in this THEME/PLUGIN DIRECTORY is made available for information purposes only, and intended to serve as a resource to enable visitors to select a relevant theme or plugin. wpSocket gives no warranty of any kind, express or implied with regard to the information, including without limitation any warranty that the particular theme or plugin that you select is qualified on your situation.

The information in the individual theme or plugin displayed in the Directory is provided by the owners and contributors themselves. wpSocket gives no warranty as to the accuracy of the information and will not be liable to you for any loss or damage suffered by you as a consequence of your reliance on the information.

Links to respective sites are offered to assist in accessing additional information. The links may be outdated or broken. Connect to outside sites at your own risk. The Theme/Plugin Directory does not endorse the content or accuracy of any listing or external website.

While information is made available, no guarantee is given that the details provided are correct, complete or up-to-date.

wpSocket is not related to the theme or plugin, and also not responsible and expressly disclaims all liability for, damages of any kind, arising out of the use, reference to, or reliance on, any information or business listed throughout our site.

Keep Leading Your Followers!
Share it for them.