diff --git a/README.md b/README.md index df56437..d57255f 100644 --- a/README.md +++ b/README.md @@ -12,11 +12,15 @@ 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 @@ -24,7 +28,8 @@ Requires the shoppingfeed plugin ## 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 diff --git a/shoppingfeed-custom-fields.php b/shoppingfeed-custom-fields.php index d0a5f5d..d6b29b3 100644 --- a/shoppingfeed-custom-fields.php +++ b/shoppingfeed-custom-fields.php @@ -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 */ @@ -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__ ) );