Plugin Directory

Changeset 3128161


Ignore:
Timestamp:
07/30/2024 01:04:32 PM (20 months ago)
Author:
avisverifies
Message:

Version 2.4.2 / 30/07/2024

  • Fix : path WP_plugin
Location:
netreviews/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • netreviews/trunk/changelog.txt

    r3103906 r3128161  
     1Version 2.4.2 / 29/07/2024
     2- Fix : fix recovery version woocommerce
     3
    14Version 2.4.1 / 12/06/2024
    25- Fix : getting orders when HPOS is activated
  • netreviews/trunk/functions.php

    r3103906 r3128161  
    66function ntav_update_version_plugin()
    77{
    8     ntav_updateValue('MODVERSION', '2.4.1');
     8    ntav_updateValue('MODVERSION', '2.4.2');
    99}
    1010
     
    756756
    757757    if (is_admin()) {
    758         $plugin_av = ABSPATH . 'wp-content/plugins/netreviews/netreviews.php';
    759         $plugin_wc = ABSPATH . 'wp-content/plugins/woocommerce/woocommerce.php';
     758        if (defined('WP_PLUGIN_DIR')) {
     759            $plugin_av = WP_PLUGIN_DIR . '/netreviews/netreviews.php';
     760            $plugin_wc = WP_PLUGIN_DIR . '/woocommerce/woocommerce.php';
     761        } else {
     762            $plugin_av = ABSPATH . 'wp-content/plugins/netreviews/netreviews.php';
     763            $plugin_wc = ABSPATH . 'wp-content/plugins/woocommerce/woocommerce.php';
     764        }
    760765        $data_av = get_plugin_data($plugin_av);
    761766        $data_wc = get_plugin_data($plugin_wc);
  • netreviews/trunk/netreviews.php

    r3103906 r3128161  
    66 * Description: We provide you with a solution that enables you to collect customer reviews about your website and products which will show on your
    77 * website and on a attestation which will increase the credibility of published reviews.
    8  * Version: 2.4.1
     8 * Version: 2.4.2
    99 * Author: NetReviews SAS <contact@avis-verifies.com>
    1010 * Author URI: www.avis-verifies.com
  • netreviews/trunk/readme.txt

    r3103906 r3128161  
    5757
    5858== Changelog ==
     59Version 2.4.2 / 30/07/2024
     60- Fix : path WP_plugin dir
     61
    5962Version 2.4.1 / 12/06/2024
    6063- Fix : getting orders when HPOS is activated
Note: See TracChangeset for help on using the changeset viewer.