Changeset 3187579
- Timestamp:
- 11/13/2024 12:24:41 PM (17 months ago)
- Location:
- trackship-for-woocommerce/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
trackship-for-woocommerce.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trackship-for-woocommerce/trunk/readme.txt
r3186943 r3187579 5 5 Tested up to: 6.7 6 6 Requires PHP: 7.4 7 Stable tag: 1.8. 77 Stable tag: 1.8.8 8 8 License: GPLv2 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 138 138 139 139 == Changelog == 140 = 1.8.8 - 2024-11-13 = 141 * Fix - Translation issue with WordPress 6.7 fixed 142 140 143 = 1.8.7 - 2024-11-13 = 141 144 * Update - Improved query for custom order number plugins. -
trackship-for-woocommerce/trunk/trackship-for-woocommerce.php
r3186915 r3187579 3 3 * Plugin Name: TrackShip for WooCommerce 4 4 * Description: TrackShip for WooCommerce integrates TrackShip into your WooCommerce Store and auto-tracks your orders, automates your post-shipping workflow and allows you to provide a superior Post-Purchase experience to your customers. 5 * Version: 1.8. 75 * Version: 1.8.8 6 6 * Author: TrackShip 7 7 * Author URI: https://trackship.com/ … … 10 10 * Text Domain: trackship-for-woocommerce 11 11 * Domain Path: /language/ 12 * WC tested up to: 9. 3.212 * WC tested up to: 9.4.1 13 13 * Requires Plugins: woocommerce 14 14 */ … … 25 25 * @var string 26 26 */ 27 public $version = '1.8. 7';27 public $version = '1.8.8'; 28 28 public $plugin_path; 29 29 public $ts_install; … … 248 248 */ 249 249 public function on_plugins_loaded() { 250 //load plugin textdomain 251 load_plugin_textdomain( 'trackship-for-woocommerce', false, dirname( plugin_basename(__FILE__) ) . '/language/' ); 252 250 253 $trackship_apikey = is_trackship_connected(); 251 254 … … 256 259 } 257 260 require_once $this->get_plugin_path() . '/includes/trackship-email-manager.php'; 258 259 //load plugin textdomain260 load_plugin_textdomain( 'trackship-for-woocommerce', false, dirname( plugin_basename(__FILE__) ) . '/language/' );261 261 } 262 262
Note: See TracChangeset
for help on using the changeset viewer.