Changeset 3088896
- Timestamp:
- 05/19/2024 08:43:46 AM (11 months ago)
- Location:
- subscription/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
subscription/trunk/includes/Illuminate/Order.php
r3083564 r3088896 90 90 case 'on-hold': 91 91 case 'pending': 92 case 'processing': 92 93 $post_status = 'pending'; 93 94 break; … … 103 104 break; 104 105 } 106 $post_status = apply_filters( 'subscript_order_status_to_post_status', $post_status, $order ); 105 107 106 108 global $wpdb; -
subscription/trunk/readme.txt
r3088866 r3088896 5 5 Requires at least: 4.0 6 6 Tested up to: 6.5 7 Stable tag: 1.1. 37 Stable tag: 1.1.4 8 8 Requires PHP: 7.0 9 9 License: GPLv2 or later … … 80 80 == Changelog == 81 81 82 = 1.1.4 = 83 - **Update:** Subscription status will be `pending` when order status is `processing`. 84 - **New**: `subscript_order_status_to_post_status` hook added to filter post status during order status changed event. 85 82 86 = 1.1.3 = 83 87 - **New**: Subscription storeAPI checkout support added. -
subscription/trunk/subscription.php
r3088866 r3088896 4 4 Plugin URI: https://wordpress.org/plugins/subscription 5 5 Description: Allow your customers to order once and get their products and services every month/week. 6 Version: 1.1. 36 Version: 1.1.4 7 7 Author: SpringDevs 8 8 Author URI: https://springdevs.com/ … … 60 60 * @var string 61 61 */ 62 const version = '1.1. 3';62 const version = '1.1.4'; 63 63 64 64 /** -
subscription/trunk/vendor/composer/installed.php
r3088866 r3088896 4 4 'pretty_version' => 'dev-next', 5 5 'version' => 'dev-next', 6 'reference' => ' eaa883ba6d400ea16c91c80769450a361ad37e10',6 'reference' => 'be6337c567c89583e5bd8ff786e441c89b140ef6', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 14 14 'pretty_version' => 'dev-next', 15 15 'version' => 'dev-next', 16 'reference' => ' eaa883ba6d400ea16c91c80769450a361ad37e10',16 'reference' => 'be6337c567c89583e5bd8ff786e441c89b140ef6', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.