Plugin Directory

Changeset 3239416


Ignore:
Timestamp:
02/12/2025 01:29:28 PM (13 months ago)
Author:
floattechnologies
Message:

Fix for isolated issue relating to cart display

Location:
float-gateway
Files:
45 added
3 edited

Legend:

Unmodified
Added
Removed
  • float-gateway/trunk/index.php

    r3235214 r3239416  
    66     * Author: © FLOAT TECHNOLOGIES (PTY) LTD
    77     * Author URI: http://float.co.za
    8      * Version: 1.0.17
     8     * Version: 1.0.18
    99    */
    1010
     
    3636}
    3737
     38$plugin_data = get_plugin_data( __FILE__ ,true, false);
     39
    3840define( 'WC_FLOAT_VER', $plugin_data['Version'] );
    3941define( 'WC_FLOAT_PLUGIN_PATH', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
     
    209211                $data = $this->loginFloat();
    210212                //    write_log('Updating Float Rules');
     213
    211214                if (is_array($data) && array_key_exists('merchant', $data)) {
    212215                    if (array_key_exists('rules', $data['merchant']) && !empty($data['merchant']['rules']) && $data['merchant']['rules'] !== '') {
     
    707710
    708711
     712function reset_transients_on_plugn_activation() {       
     713    delete_transient( 'float_order_rules' );
     714}
     715
     716register_activation_hook( __FILE__, 'reset_transients_on_plugn_activation' );
     717
    709718
    710719//Registers WooCommerce Blocks integration.
  • float-gateway/trunk/readme.md

    r3235214 r3239416  
    71711.0.16 - Included WooCommerce Blocks Integration
    72721.0.17 - Deployment fix
     731.0.18 - Fix for isolated issue relating to cart display
  • float-gateway/trunk/readme.txt

    r3235214 r3239416  
    71711.0.16 - Included WooCommerce Blocks Integration
    72721.0.17 - Deployment fix
     731.0.18 - Fix for isolated issue relating to cart display
Note: See TracChangeset for help on using the changeset viewer.