Changeset 3148484
- Timestamp:
- 09/09/2024 07:31:57 AM (7 months ago)
- Location:
- visidea
- Files:
-
- 215 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
visidea/trunk/admin/class-visidea-admin.php
r3128182 r3148484 222 222 } 223 223 224 $buffer .= $item->get_variation_regular_price('min') . ';' .225 $item->get_variation_price('min') . ';' .224 $buffer .= wc_get_price_including_tax($item, array('price' => $item->get_variation_regular_price('min'))) . ';' . 225 wc_get_price_including_tax($item, array('price' => $item->get_variation_price('min'))) . ';' . 226 226 $discount . ';'; 227 227 } else { … … 232 232 } 233 233 234 $buffer .= $item->get_regular_price() . ';' .235 $item->get_price() . ';' .234 $buffer .= wc_get_price_including_tax($item, array('price' => $item->get_regular_price())) . ';' . 235 wc_get_price_including_tax($item) . ';' . 236 236 $discount . ';'; 237 237 } -
visidea/trunk/readme.txt
r3130030 r3148484 6 6 Tested up to: 6.6 7 7 Requires PHP: 7.0 8 Stable tag: 2.1. 18 Stable tag: 2.1.3 9 9 License: GPLv3 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 96 96 97 97 == Changelog == 98 99 = 2.1.3 2024-09-09 = 100 Tax management improvement 98 101 99 102 = 2.1.2 2024-08-02 = -
visidea/trunk/visidea.php
r3130030 r3148484 5 5 * Plugin URI: https://visidea.ai 6 6 * Description: Visidea is the search and recommendations plugin for WooCommerce. Visidea improves UX and increases the revenues of your website. 7 * Version: 2.1. 27 * Version: 2.1.3 8 8 * Author: Inferendo 9 9 * Author URI: https://visidea.ai … … 27 27 * Current Visidea version. 28 28 */ 29 define('VISIDEA_VERSION', '2.1. 2');29 define('VISIDEA_VERSION', '2.1.3'); 30 30 31 31 /**
Note: See TracChangeset
for help on using the changeset viewer.