Plugin Directory

Changeset 2696903


Ignore:
Timestamp:
03/21/2022 08:54:37 AM (4 years ago)
Author:
codeclouds
Message:

Fix - Product mapping tool pricing round off issue.

Location:
unify/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • unify/trunk/Actions/Tools.php

    r2694678 r2696903  
    7777            foreach($data['list'] as $k => $prod_list){
    7878                $product = \wc_get_product( $prod_list['ID'] );
    79                 $data['list'][$k]['price'] = round($product->get_price());
     79                $data['list'][$k]['price'] = $product->get_price();
    8080            }
    8181        }
  • unify/trunk/readme.txt

    r2694678 r2696903  
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
    10 Version: 3.2.4
     10Version: 3.2.5
    1111
    1212A CRM payment plugin which enables connectivity with LimeLight/Konnektive CRM and many more.
     
    9292== Changelog ==
    9393
     94= 3.2.5 =
     95* Fix - Product mapping tool pricing round off issue.
     96
    9497= 3.2.4 =
    9598* Add - Added sorting feature in product mapping tool.
  • unify/trunk/unify.php

    r2694678 r2696903  
    77 * Author: CodeClouds <sales@codeclouds.com>
    88 * Author URI: https://www.CodeClouds.com/
    9  * Version: 3.2.4
     9 * Version: 3.2.5
    1010 * License: GPLv2 or later
    1111 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    6565define('UNIFY_WP_HOME_URL', home_url());
    6666define('EMBED_JS_VERSION', '3.12.5');
    67 define('UNIFY_JS_VERSION', '3.2.3');
     67define('UNIFY_JS_VERSION', '3.2.5');
Note: See TracChangeset for help on using the changeset viewer.