Changeset 3354882
- Timestamp:
- 09/02/2025 05:41:35 PM (7 months ago)
- Location:
- cod24-shipping
- Files:
-
- 26 added
- 1 deleted
- 5 edited
-
tags/4.0.8/cod24-shipping.php (modified) (1 diff)
-
tags/4.0.8/readme.txt (deleted)
-
tags/4.0.9 (added)
-
tags/4.0.9/assets (added)
-
tags/4.0.9/assets/css (added)
-
tags/4.0.9/assets/css/cod24-woo-admin.css (added)
-
tags/4.0.9/assets/css/sweetalert2.css (added)
-
tags/4.0.9/assets/index.php (added)
-
tags/4.0.9/assets/js (added)
-
tags/4.0.9/assets/js/city-select.js (added)
-
tags/4.0.9/assets/js/cod24-shcod-fee.js (added)
-
tags/4.0.9/assets/js/cod24-woo-admin.js (added)
-
tags/4.0.9/assets/js/sweetalert2.js (added)
-
tags/4.0.9/cod24-shipping.php (added)
-
tags/4.0.9/inc (added)
-
tags/4.0.9/inc/api (added)
-
tags/4.0.9/inc/api/class-cod24-api.php (added)
-
tags/4.0.9/inc/api/class-cod24-tipax-api.php (added)
-
tags/4.0.9/inc/class-cod24-settings.php (added)
-
tags/4.0.9/inc/class-cod24-shcod.php (added)
-
tags/4.0.9/inc/class-cod24-woo.php (added)
-
tags/4.0.9/inc/index.php (added)
-
tags/4.0.9/inc/shipping (added)
-
tags/4.0.9/inc/shipping/class-cod24-pishtaz.php (added)
-
tags/4.0.9/inc/shipping/class-cod24-special.php (added)
-
tags/4.0.9/inc/shipping/class-cod24-tipax.php (added)
-
tags/4.0.9/index.php (added)
-
tags/4.0.9/readme.txt (added)
-
trunk/cod24-shipping.php (modified) (2 diffs)
-
trunk/inc/shipping/class-cod24-pishtaz.php (modified) (2 diffs)
-
trunk/inc/shipping/class-cod24-special.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cod24-shipping/tags/4.0.8/cod24-shipping.php
r3346653 r3354882 27 27 public function __construct() 28 28 { 29 define('COD24_PLUGIN_VERSION', '4.0. 7');29 define('COD24_PLUGIN_VERSION', '4.0.8'); 30 30 define('COD24_PLUGIN_DIR', plugin_dir_path(__FILE__)); 31 31 define('COD24_PLUGIN_URL', plugin_dir_url(__FILE__)); -
cod24-shipping/trunk/cod24-shipping.php
r3346653 r3354882 3 3 Plugin Name: COD24 Shipping For Woocommerce 4 4 Description: This plugin is adding COD24 shipping methods to woocommerce. 5 Version: 4.0. 85 Version: 4.0.9 6 6 Author: COD24 7 7 Author URI: https://cod24.ir … … 27 27 public function __construct() 28 28 { 29 define('COD24_PLUGIN_VERSION', '4.0. 7');29 define('COD24_PLUGIN_VERSION', '4.0.9'); 30 30 define('COD24_PLUGIN_DIR', plugin_dir_path(__FILE__)); 31 31 define('COD24_PLUGIN_URL', plugin_dir_url(__FILE__)); -
cod24-shipping/trunk/inc/shipping/class-cod24-pishtaz.php
r3318250 r3354882 5 5 * Package: COD24 Shipping 6 6 * Author: COD24 7 * Last Modified Time: 2025/0 6/26 15:53:397 * Last Modified Time: 2025/09/02 21:03:46 8 8 * License: GPL-2.0+ 9 9 * License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 136 136 137 137 if( $current_currency == 'IRR' ) { 138 $total_cart_price = ceil($cart_price *10);138 $total_cart_price = ceil($cart_price / 10); 139 139 } else { 140 140 $total_cart_price = $cart_price; -
cod24-shipping/trunk/inc/shipping/class-cod24-special.php
r3318250 r3354882 5 5 * Package: COD24 Shipping 6 6 * Author: COD24 7 * Last Modified Time: 2025/0 6/26 15:54:007 * Last Modified Time: 2025/09/02 21:08:19 8 8 * License: GPL-2.0+ 9 9 * License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 140 140 141 141 if( $current_currency == 'IRR' ) { 142 $total_cart_price = ceil($cart_price *10);142 $total_cart_price = ceil($cart_price / 10); 143 143 } else { 144 144 $total_cart_price = $cart_price; -
cod24-shipping/trunk/readme.txt
r3346653 r3354882 4 4 Requires at least: 5.0 5 5 Tested up to: 6.8.2 6 Stable tag: 4.0. 86 Stable tag: 4.0.9 7 7 License: GPL-2.0+ 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 43 43 44 44 == Changelog == 45 46 = 4.0.9 = 47 * fixed get rate in iranian rial currency (IRR) 45 48 46 49 = 4.0.8 =
Note: See TracChangeset
for help on using the changeset viewer.