Plugin Directory

Changeset 3148484


Ignore:
Timestamp:
09/09/2024 07:31:57 AM (7 months ago)
Author:
visidea
Message:

2.1.3

Location:
visidea
Files:
215 added
3 edited

Legend:

Unmodified
Added
Removed
  • visidea/trunk/admin/class-visidea-admin.php

    r3128182 r3148484  
    222222      }
    223223
    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'))) . ';' .
    226226        $discount . ';';
    227227    } else {
     
    232232      }
    233233
    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) . ';' .
    236236        $discount . ';';
    237237    }
  • visidea/trunk/readme.txt

    r3130030 r3148484  
    66Tested up to: 6.6
    77Requires PHP: 7.0
    8 Stable tag: 2.1.1
     8Stable tag: 2.1.3
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    9696
    9797== Changelog ==
     98
     99= 2.1.3 2024-09-09 =
     100Tax management improvement
    98101
    99102= 2.1.2 2024-08-02 =
  • visidea/trunk/visidea.php

    r3130030 r3148484  
    55 * Plugin URI: https://visidea.ai
    66 * Description: Visidea is the search and recommendations plugin for WooCommerce. Visidea improves UX and increases the revenues of your website.
    7  * Version: 2.1.2
     7 * Version: 2.1.3
    88 * Author: Inferendo
    99 * Author URI: https://visidea.ai
     
    2727 * Current Visidea version.
    2828 */
    29 define('VISIDEA_VERSION', '2.1.2');
     29define('VISIDEA_VERSION', '2.1.3');
    3030
    3131/**
Note: See TracChangeset for help on using the changeset viewer.