Skip to content
Merged
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
13 changes: 9 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,24 @@ Requires the shoppingfeed plugin

## Changelog

##1.0.3 (24-08-2023)
### 1.0.4 (28-08-2023)

* fix: THe selected/unselected ACF fields are saved correctly
* fix: missing value for select with single value

##1.0.2 (12-05-2022)
### 1.0.3 (24-08-2023)

* fix: The selected/unselected ACF fields are saved correctly

### 1.0.2 (12-05-2022)

* added: Readme file
* added: Notice in the plugin admin page

## Configuration

To start using the plugin correctly, you need to configure some ACF fields first
- In Plugins > Installed Plugins > ShoppingFeed Custom Fields > settings, choose the ACF fields to export

- In Plugins > Installed Plugins > ShoppingFeed Custom Fields > settings, choose the ACF fields to export

### Supported fields

Expand Down
4 changes: 2 additions & 2 deletions shoppingfeed-custom-fields.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Author URI: https://www.shopping-feed.com/
* Text Domain: shopping-feed-custom-fields
* Domain Path: /languages
* Version: 1.0.3
* Version: 1.0.4
* License: GPLv3 or later
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
*/
Expand All @@ -22,7 +22,7 @@
require_once plugin_dir_path( __FILE__ ) . '/vendor/autoload.php';
}

define( 'SFCF_PLUGIN_VERSION', '1.0.3' );
define( 'SFCF_PLUGIN_VERSION', '1.0.4' );
define( 'SFCF_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
define( 'SFCF_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
define( 'SFCF_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
Expand Down