Changeset 3005018
- Timestamp:
- 12/04/2023 10:17:46 AM (2 years ago)
- Location:
- shop-2-api/trunk
- Files:
-
- 3 edited
-
includes/Base/EnqueueWCAPI.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
-
shop-2-api.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
shop-2-api/trunk/includes/Base/EnqueueWCAPI.php
r3001863 r3005018 11 11 class Shop2Api_EnqueueWCAPI 12 12 { 13 13 14 public function register(): void 14 15 { … … 33 34 $meta_value = esc_sql($request->get_param('meta_value')); 34 35 $compare_operator = $request->get_param('compare_operator'); 36 $page = max(1, $request->get_param('page')); 37 $posts_per_page = 100; 35 38 36 39 $args = array( … … 40 43 'key' => $meta_key, 41 44 'value' => $meta_value, 42 'compare' => $compare_operator 45 'compare' => $compare_operator, 46 'posts_per_page' => -1, 43 47 ) 44 ) 48 ), 49 'paged' => $page, 50 'posts_per_page' => $posts_per_page, 45 51 ); 46 52 -
shop-2-api/trunk/readme.txt
r3001863 r3005018 3 3 Plugin URI: https://wordpress.org/plugins/shop-2-api/ 4 4 Tags: WooCommerce, Bol 5 Stable Tag: 1.0.28. 55 Stable Tag: 1.0.28.6 6 6 Requires at least: 5.0 7 7 Requires PHP: 7.2 -
shop-2-api/trunk/shop-2-api.php
r3001863 r3005018 5 5 Plugin URI: https://wordpress.org/plugins/shop-2-api/ 6 6 Description: The plugin Shop2Api will sync products between e-Commerce platforms. The current supported e-Commerce platforms are WooCommerce to Bol.com, and we are working on Amazon, Shopify and others. We added a koopblok service so that you can check if you lower your price can you get koopblok. 7 Version: 1.0.28. 57 Version: 1.0.28.6 8 8 Requires at least: 5.0 9 9 Requires PHP: 7.2 … … 34 34 define('SHOP2API_PLUGIN_URL', plugin_dir_url( __FILE__ )); 35 35 define('SHOP2API_PLUGIN', plugin_basename( __FILE__ )); 36 define ('VERSION', '1.0.28. 5');36 define ('VERSION', '1.0.28.6'); 37 37 38 38 // Register items in the project.
Note: See TracChangeset
for help on using the changeset viewer.