Changeset 3263411
- Timestamp:
- 03/28/2025 10:09:27 AM (12 months ago)
- Location:
- puddinq-order-list/trunk
- Files:
-
- 4 edited
-
classes/Helpers/Constants.php (modified) (1 diff)
-
classes/Plugin.php (modified) (1 diff)
-
puddinq-order-list.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
puddinq-order-list/trunk/classes/Helpers/Constants.php
r3263120 r3263411 14 14 15 15 const PLUGIN_NAME = 'puddinq-order-list'; 16 const VERSION = '0.2. 2';16 const VERSION = '0.2.3'; 17 17 18 18 // Plugin Path for includes -
puddinq-order-list/trunk/classes/Plugin.php
r3263120 r3263411 37 37 38 38 if (is_admin()) { 39 require_once __DIR__ . '/Helpers/Constants.php';40 require_once __DIR__ . '/Admin.php';41 require_once __DIR__ . '/Filter.php';42 43 39 (new Admin()); 44 40 -
puddinq-order-list/trunk/puddinq-order-list.php
r3263120 r3263411 4 4 Plugin URI: https://wordpress.org/plugins/puddinq-order-list/ 5 5 Description: Enhances the WooCommerce orders screen with practical information. 6 Version: 0.2. 26 Version: 0.2.3 7 7 Author: Stefan Schotvanger 8 8 Author URI: http://www.puddinq.nl/wip/stefan-schotvanger/ … … 21 21 defined('ABSPATH') or die('Cheating uh?'); 22 22 23 require __DIR__ . '/classes/Plugin.php'; 23 require_once __DIR__ . '/classes/Helpers/Constants.php'; 24 require_once __DIR__ . '/classes/Admin.php'; 25 require_once __DIR__ . '/classes/Filter.php'; 26 require_once __DIR__ . '/classes/Plugin.php'; 24 27 25 28 $OrderList = new \PuddinqOrderList\Plugin(); -
puddinq-order-list/trunk/readme.txt
r3263120 r3263411 5 5 Requires at least: 6.7.2 6 6 Tested up to: 6.7.2 7 Stable tag: 0.2. 27 Stable tag: 0.2.3 8 8 Requires PHP: 8.0 9 9 WC requires at least: 9.7.1 … … 13 13 14 14 The goal of the plugin is to manage your shop without opening the orders. Showing products, variation properties and shipping methods in the order screen. 15 15 16 16 17 == Description == … … 56 57 == Changelog == 57 58 58 0.2.2 = 59 = 0.2.3 = 60 61 * fix fatal error 62 63 = 0.2.2 = 59 64 60 65 * Big update for WooCommerce compatibility. 61 66 * Same functionality. 62 67 63 0.2.1 =68 = 0.2.1 = 64 69 65 70 * Check WordPress 6.4.2, WooCommerce 8.4.0 66 71 67 0.1.9 =72 = 0.1.9 = 68 73 69 74 * Made sku visible when hovering product title
Note: See TracChangeset
for help on using the changeset viewer.