Changeset 3204609
- Timestamp:
- 12/09/2024 05:50:20 AM (16 months ago)
- Location:
- trackship-for-woocommerce/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
trackship-for-woocommerce.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trackship-for-woocommerce/trunk/readme.txt
r3187579 r3204609 5 5 Tested up to: 6.7 6 6 Requires PHP: 7.4 7 Stable tag: 1.8. 87 Stable tag: 1.8.9 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.9 - 2024-12-09 = 141 * Fix - Translation warning with WordPress 6.7.1 fixed 142 * Update - tested up to WP versions for the WordPress 6.7.1 release 143 * Update - tested up to WC versions for the WooCommerce 9.4.3 release 144 140 145 = 1.8.8 - 2024-11-13 = 141 146 * Fix - Translation issue with WordPress 6.7 fixed -
trackship-for-woocommerce/trunk/trackship-for-woocommerce.php
r3187579 r3204609 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. 85 * Version: 1.8.9 6 6 * Author: TrackShip 7 7 * Author URI: https://trackship.com/ … … 25 25 * @var string 26 26 */ 27 public $version = '1.8. 8';27 public $version = '1.8.9'; 28 28 public $plugin_path; 29 29 public $ts_install; … … 248 248 */ 249 249 public function on_plugins_loaded() { 250 //load plugin textdomain251 load_plugin_textdomain( 'trackship-for-woocommerce', false, dirname( plugin_basename(__FILE__) ) . '/language/' );252 253 250 $trackship_apikey = is_trackship_connected(); 254 251 255 252 //load customizer 256 253 if ( $trackship_apikey ) { … … 259 256 } 260 257 require_once $this->get_plugin_path() . '/includes/trackship-email-manager.php'; 258 259 //load plugin textdomain 260 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.