Plugin Directory

Changeset 3354882


Ignore:
Timestamp:
09/02/2025 05:41:35 PM (7 months ago)
Author:
cod24
Message:
  • fixed get rate in iranian rial currency (IRR)
Location:
cod24-shipping
Files:
26 added
1 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • cod24-shipping/tags/4.0.8/cod24-shipping.php

    r3346653 r3354882  
    2727        public function __construct()
    2828        {
    29             define('COD24_PLUGIN_VERSION', '4.0.7');
     29            define('COD24_PLUGIN_VERSION', '4.0.8');
    3030            define('COD24_PLUGIN_DIR', plugin_dir_path(__FILE__));
    3131            define('COD24_PLUGIN_URL', plugin_dir_url(__FILE__));
  • cod24-shipping/trunk/cod24-shipping.php

    r3346653 r3354882  
    33Plugin Name: COD24 Shipping For Woocommerce
    44Description: This plugin is adding COD24 shipping methods to woocommerce.
    5 Version: 4.0.8
     5Version: 4.0.9
    66Author: COD24
    77Author URI: https://cod24.ir
     
    2727        public function __construct()
    2828        {
    29             define('COD24_PLUGIN_VERSION', '4.0.7');
     29            define('COD24_PLUGIN_VERSION', '4.0.9');
    3030            define('COD24_PLUGIN_DIR', plugin_dir_path(__FILE__));
    3131            define('COD24_PLUGIN_URL', plugin_dir_url(__FILE__));
  • cod24-shipping/trunk/inc/shipping/class-cod24-pishtaz.php

    r3318250 r3354882  
    55 * Package: COD24 Shipping
    66 * Author: COD24
    7  * Last Modified Time: 2025/06/26 15:53:39
     7 * Last Modified Time: 2025/09/02 21:03:46
    88 * License: GPL-2.0+
    99 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    136136                   
    137137                    if( $current_currency == 'IRR' ) {
    138                         $total_cart_price = ceil($cart_price * 10);
     138                        $total_cart_price = ceil($cart_price / 10);
    139139                    } else {
    140140                        $total_cart_price = $cart_price;
  • cod24-shipping/trunk/inc/shipping/class-cod24-special.php

    r3318250 r3354882  
    55 * Package: COD24 Shipping
    66 * Author: COD24
    7  * Last Modified Time: 2025/06/26 15:54:00
     7 * Last Modified Time: 2025/09/02 21:08:19
    88 * License: GPL-2.0+
    99 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    140140                   
    141141                    if( $current_currency == 'IRR' ) {
    142                         $total_cart_price = ceil($cart_price * 10);
     142                        $total_cart_price = ceil($cart_price / 10);
    143143                    } else {
    144144                        $total_cart_price = $cart_price;
  • cod24-shipping/trunk/readme.txt

    r3346653 r3354882  
    44Requires at least: 5.0
    55Tested up to: 6.8.2
    6 Stable tag: 4.0.8
     6Stable tag: 4.0.9
    77License: GPL-2.0+
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4343
    4444== Changelog ==
     45
     46= 4.0.9 =
     47* fixed get rate in iranian rial currency (IRR)
    4548
    4649= 4.0.8 =
Note: See TracChangeset for help on using the changeset viewer.