Plugin Directory

Changeset 3041839


Ignore:
Timestamp:
02/27/2024 10:34:31 AM (2 years ago)
Author:
devcashfree
Message:

Update to version 4.5.8

Location:
cashfree
Files:
28 added
3 edited

Legend:

Unmodified
Added
Removed
  • cashfree/trunk/cashfree.php

    r3039813 r3041839  
    22/**
    33 * Plugin Name: Cashfree
    4  * Version: 4.5.7
     4 * Version: 4.5.8
    55 * Plugin URI: https://github.com/cashfree/cashfree-woocommerce
    66 * Description: Payment gateway plugin by Cashfree Payments for Woocommerce sites.
  • cashfree/trunk/includes/request/class-wc-cashfree-request-items.php

    r3038899 r3041839  
    2929            'item_details_url'          => get_permalink( $item->get_product_id() ),
    3030            'item_image_url'            => (string) wp_get_attachment_image_url( $product->get_image_id(), 'full' ),
    31             'item_original_unit_price'      => $product->get_regular_price(),
    32             'item_discounted_unit_price'    => $product->get_price(),
     31            'item_original_unit_price'      => $product->get_regular_price() ? $product->get_regular_price() : 0,
     32            'item_discounted_unit_price'    => $product->get_price() ? $product->get_price() : 0,
    3333            'item_quantity'                 => $item->get_quantity(),
    3434            'item_currency'                 =>  $order->get_currency()
  • cashfree/trunk/readme.txt

    r3039813 r3041839  
    44Tested up to: 6.4
    55Requires PHP: 5.6
    6 Stable tag: 4.5.7
    7 Version: 4.5.7
     6Stable tag: 4.5.8
     7Version: 4.5.8
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
Note: See TracChangeset for help on using the changeset viewer.