Changeset 2696903
- Timestamp:
- 03/21/2022 08:54:37 AM (4 years ago)
- Location:
- unify/trunk
- Files:
-
- 3 edited
-
Actions/Tools.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
unify.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
unify/trunk/Actions/Tools.php
r2694678 r2696903 77 77 foreach($data['list'] as $k => $prod_list){ 78 78 $product = \wc_get_product( $prod_list['ID'] ); 79 $data['list'][$k]['price'] = round($product->get_price());79 $data['list'][$k]['price'] = $product->get_price(); 80 80 } 81 81 } -
unify/trunk/readme.txt
r2694678 r2696903 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html 10 Version: 3.2. 410 Version: 3.2.5 11 11 12 12 A CRM payment plugin which enables connectivity with LimeLight/Konnektive CRM and many more. … … 92 92 == Changelog == 93 93 94 = 3.2.5 = 95 * Fix - Product mapping tool pricing round off issue. 96 94 97 = 3.2.4 = 95 98 * Add - Added sorting feature in product mapping tool. -
unify/trunk/unify.php
r2694678 r2696903 7 7 * Author: CodeClouds <sales@codeclouds.com> 8 8 * Author URI: https://www.CodeClouds.com/ 9 * Version: 3.2. 49 * Version: 3.2.5 10 10 * License: GPLv2 or later 11 11 * License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 65 65 define('UNIFY_WP_HOME_URL', home_url()); 66 66 define('EMBED_JS_VERSION', '3.12.5'); 67 define('UNIFY_JS_VERSION', '3.2. 3');67 define('UNIFY_JS_VERSION', '3.2.5');
Note: See TracChangeset
for help on using the changeset viewer.