Plugin Directory

Changeset 3227863


Ignore:
Timestamp:
01/24/2025 07:23:21 AM (11 months ago)
Author:
anthonyeden
Message:

Version 2.5.2

Location:
profiler-donations-gravityforms
Files:
3 edited
5 copied

Legend:

Unmodified
Added
Removed
  • profiler-donations-gravityforms/tags/2.5.2/class-profilercommon.php

    r3217308 r3227863  
    2929        add_filter('gform_stripe_charge_description',       array($this, 'stripe_payment_description'), 10, 5);
    3030        add_filter('gform_stripe_payment_element_initial_payment_information', array($this, 'stripe_elements_setup'), 10, 3);
     31
     32        // Workaround for change/bug introduced in v2.9.1
     33        // See https://community.gravityforms.com/t/gf-2-9-stripe-transaction-id-in-gffeedaddon-empty/18770
     34        remove_filter('gform_entry_post_save', array($this, 'maybe_process_feed'), 10);
     35        add_filter('gform_entry_post_save', array($this, 'maybe_process_feed'), 12, 2);
    3136
    3237        // Metabox for Profiler Logs
  • profiler-donations-gravityforms/tags/2.5.2/index.php

    r3217308 r3227863  
    44Plugin URI: https://mediarealm.com.au/
    55Description: Integrates Gravity Forms with Profiler, enabling donation data and more to be sent directly to Profiler.
    6 Version: 2.5.1
     6Version: 2.5.2
    77
    88Author: Media Realm
  • profiler-donations-gravityforms/tags/2.5.2/readme.txt

    r3217308 r3227863  
    2222
    2323== Changelog ==
     24
     25= 2.5.2 =
     26
     27Please backup your site before upgrading, and test all your integrations thoroughly after upgrading this plugin. If you experience trouble, please roll back to a previous version of your site.
     28
     29* Fix a problem in Gravity Forms v2.9.1 where a payment feed's Transaction ID wasn't being sent to Profiler
    2430
    2531= 2.5.1 =
  • profiler-donations-gravityforms/trunk/class-profilercommon.php

    r3217308 r3227863  
    2929        add_filter('gform_stripe_charge_description',       array($this, 'stripe_payment_description'), 10, 5);
    3030        add_filter('gform_stripe_payment_element_initial_payment_information', array($this, 'stripe_elements_setup'), 10, 3);
     31
     32        // Workaround for change/bug introduced in v2.9.1
     33        // See https://community.gravityforms.com/t/gf-2-9-stripe-transaction-id-in-gffeedaddon-empty/18770
     34        remove_filter('gform_entry_post_save', array($this, 'maybe_process_feed'), 10);
     35        add_filter('gform_entry_post_save', array($this, 'maybe_process_feed'), 12, 2);
    3136
    3237        // Metabox for Profiler Logs
  • profiler-donations-gravityforms/trunk/index.php

    r3217308 r3227863  
    44Plugin URI: https://mediarealm.com.au/
    55Description: Integrates Gravity Forms with Profiler, enabling donation data and more to be sent directly to Profiler.
    6 Version: 2.5.1
     6Version: 2.5.2
    77
    88Author: Media Realm
  • profiler-donations-gravityforms/trunk/readme.txt

    r3217308 r3227863  
    2222
    2323== Changelog ==
     24
     25= 2.5.2 =
     26
     27Please backup your site before upgrading, and test all your integrations thoroughly after upgrading this plugin. If you experience trouble, please roll back to a previous version of your site.
     28
     29* Fix a problem in Gravity Forms v2.9.1 where a payment feed's Transaction ID wasn't being sent to Profiler
    2430
    2531= 2.5.1 =
Note: See TracChangeset for help on using the changeset viewer.