Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed a bug that prevented Codifier filters to be run for the component fields. #34

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## Unreleased

## [1.2.5] - 2018-11-22

### Fixed
- A bug that prevented Codifier filters to be run for the component fields.

## [1.2.4] - 2018-04-12

### Added
Expand Down
4 changes: 2 additions & 2 deletions plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: DustPress Components
* Plugin URI: https://github.com/devgeniem/dustpress-components
* Description: A WordPress, DustPress and ACF Flexible Contents plugin for modular component structures.
* Version: 1.2.4
* Version: 1.2.5
* Author: Geniem Oy
* Text Domain: dustpress-components
* Author URI: http://www.geniem.com
Expand Down Expand Up @@ -117,7 +117,7 @@ private static function get_components() {
$fields = apply_filters( 'dustpress/components/fields=' . $component->name, $fields );

if ( $fields instanceof \Geniem\ACF\Field\Flexible\Layout ) {
$fields = $fields->export();
$fields = $fields->export( true );
}

$return[] = $fields;
Expand Down