Changeset 3238045
- Timestamp:
- 02/10/2025 04:06:18 PM (11 months ago)
- Location:
- datafeedr-api
- Files:
-
- 6 edited
- 1 copied
-
tags/1.3.24 (copied) (copied from datafeedr-api/trunk)
-
tags/1.3.24/classes/class-dfrapi-searchform.php (modified) (2 diffs)
-
tags/1.3.24/datafeedr-api.php (modified) (2 diffs)
-
tags/1.3.24/readme.txt (modified) (2 diffs)
-
trunk/classes/class-dfrapi-searchform.php (modified) (2 diffs)
-
trunk/datafeedr-api.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
datafeedr-api/tags/1.3.24/classes/class-dfrapi-searchform.php
r2904614 r3238045 302 302 'name' => 'merchant_limit', 303 303 'input' => 'select', 304 'options' => array_filter( range( 0, 50 ), function ( $num ) {304 'options' => array_filter( range( 0, 10 ), function ( $num ) { 305 305 return $num != 0; 306 306 } ), … … 1089 1089 // Merchant Limit 1090 1090 $help['merchant_limit'] = '<h3>' . __('Merchant Limit', 'datafeedr-api' ) . '</h3>'; 1091 $help['merchant_limit'] .= '<p>' . __( 'Limit the number of items returned per merchant. The number must be between 1 and 50.', 'datafeedr-api' ) . '</p>';1091 $help['merchant_limit'] .= '<p>' . __( 'Limit the number of items returned per merchant. The number must be between 1 and 10.', 'datafeedr-api' ) . '</p>'; 1092 1092 $help['merchant_limit'] .= $this->help_tip( __( 'This is useful to use when you have one merchant which has many products that match your search but other merchants have fewer of those same products and you want equal distribution between all merchants.', 'datafeedr-api' ) ); 1093 1093 -
datafeedr-api/tags/1.3.24/datafeedr-api.php
r3238038 r3238045 11 11 Requires at least: 3.8 12 12 Tested up to: 6.7 13 Version: 1.3.2 313 Version: 1.3.24 14 14 15 15 Datafeedr API Plugin … … 33 33 * Define constants. 34 34 */ 35 define( 'DFRAPI_VERSION', '1.3.2 3' );35 define( 'DFRAPI_VERSION', '1.3.24' ); 36 36 define( 'DFRAPI_URL', plugin_dir_url( __FILE__ ) ); // https://example.com/wp-content/plugins/datafeedr-api/ 37 37 define( 'DFRAPI_PATH', plugin_dir_path( __FILE__ ) ); // /absolute/path/to/wp-content/plugins/datafeedr-api/ -
datafeedr-api/tags/1.3.24/readme.txt
r3238038 r3238045 8 8 Requires at least: 3.8 9 9 Tested up to: 6.7 10 Stable tag: 1.3.2 310 Stable tag: 1.3.24 11 11 12 12 Connect to the Datafeedr API. … … 74 74 75 75 == Changelog == 76 77 = 1.3.24 - 2025/02/10 = 78 * Fixed drop down for Merchant Limit search filter 76 79 77 80 = 1.3.23 - 2025/02/10 = -
datafeedr-api/trunk/classes/class-dfrapi-searchform.php
r2904614 r3238045 302 302 'name' => 'merchant_limit', 303 303 'input' => 'select', 304 'options' => array_filter( range( 0, 50 ), function ( $num ) {304 'options' => array_filter( range( 0, 10 ), function ( $num ) { 305 305 return $num != 0; 306 306 } ), … … 1089 1089 // Merchant Limit 1090 1090 $help['merchant_limit'] = '<h3>' . __('Merchant Limit', 'datafeedr-api' ) . '</h3>'; 1091 $help['merchant_limit'] .= '<p>' . __( 'Limit the number of items returned per merchant. The number must be between 1 and 50.', 'datafeedr-api' ) . '</p>';1091 $help['merchant_limit'] .= '<p>' . __( 'Limit the number of items returned per merchant. The number must be between 1 and 10.', 'datafeedr-api' ) . '</p>'; 1092 1092 $help['merchant_limit'] .= $this->help_tip( __( 'This is useful to use when you have one merchant which has many products that match your search but other merchants have fewer of those same products and you want equal distribution between all merchants.', 'datafeedr-api' ) ); 1093 1093 -
datafeedr-api/trunk/datafeedr-api.php
r3238038 r3238045 11 11 Requires at least: 3.8 12 12 Tested up to: 6.7 13 Version: 1.3.2 313 Version: 1.3.24 14 14 15 15 Datafeedr API Plugin … … 33 33 * Define constants. 34 34 */ 35 define( 'DFRAPI_VERSION', '1.3.2 3' );35 define( 'DFRAPI_VERSION', '1.3.24' ); 36 36 define( 'DFRAPI_URL', plugin_dir_url( __FILE__ ) ); // https://example.com/wp-content/plugins/datafeedr-api/ 37 37 define( 'DFRAPI_PATH', plugin_dir_path( __FILE__ ) ); // /absolute/path/to/wp-content/plugins/datafeedr-api/ -
datafeedr-api/trunk/readme.txt
r3238038 r3238045 8 8 Requires at least: 3.8 9 9 Tested up to: 6.7 10 Stable tag: 1.3.2 310 Stable tag: 1.3.24 11 11 12 12 Connect to the Datafeedr API. … … 74 74 75 75 == Changelog == 76 77 = 1.3.24 - 2025/02/10 = 78 * Fixed drop down for Merchant Limit search filter 76 79 77 80 = 1.3.23 - 2025/02/10 =
Note: See TracChangeset
for help on using the changeset viewer.