Plugin Directory

Changeset 2958226


Ignore:
Timestamp:
08/25/2023 08:39:59 AM (3 years ago)
Author:
devcashfree
Message:

Update to version 4.5.2

Location:
cashfree
Files:
26 added
2 edited

Legend:

Unmodified
Added
Removed
  • cashfree/trunk/cashfree.php

    r2950102 r2958226  
    22/**
    33 * Plugin Name: Cashfree
    4  * Version: 4.5.1
     4 * Version: 4.5.2
    55 * Plugin URI: https://github.com/cashfree/cashfree-woocommerce
    66 * Description: Payment gateway plugin by Cashfree Payments for Woocommerce sites.
     
    2525// to read main.js file
    2626define ('WPCO_URL', trailingslashit(plugins_url('/',__FILE__)));
     27
     28require_once ABSPATH . 'wp-admin/includes/plugin.php';
     29
     30add_action('before_woocommerce_init', function() {
     31    if (class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class))
     32    {
     33        \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility('custom_order_tables', __FILE__, true);
     34    }
     35});
    2736
    2837/**
  • cashfree/trunk/readme.txt

    r2950102 r2958226  
    44Tested up to: 6.2
    55Requires PHP: 5.6
    6 Stable tag: 4.5.1
    7 Version: 4.5.1
     6Stable tag: 4.5.2
     7Version: 4.5.2
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    5151== Changelog ==
    5252
     53= 4.5.2 =
     54* Added compatibility with High-Performance order storage (COT).
     55
    5356= 4.5.0 =
    54 * Change error message in case of domain name is not whitelist
    55 * Customize your order ID prefix to maintain distinct identification for orders, especially when managing multiple stores with shared order sequences. By setting a unique prefix for each store, you ensure that orders remain organized and easily distinguishable.
     57* Change error message for cases where the domain name is not whitelisted.
     58* Introduce the ability to customize the order ID prefix. This feature is particularly useful when managing multiple stores with shared order sequences. By assigning a unique prefix to each store, you can maintain clear organization and easy distinction between orders.
     59
    5660
    5761= 4.4.6 =
Note: See TracChangeset for help on using the changeset viewer.