Plugin Directory

Changeset 3460030


Ignore:
Timestamp:
02/12/2026 02:24:44 PM (4 weeks ago)
Author:
basecloud
Message:

Update to version 3.0.2 from GitHub

Location:
basecloud-utm-tracker
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • basecloud-utm-tracker/tags/3.0.2/CHANGELOG.md

    r3460013 r3460030  
    11# Changelog
     2
     3## 3.0.2 - 2026-02-12
     4
     5**🔧 Bug Fix Release**
     6
     7### Fixed
     8
     9• **CRITICAL: Webhook Edit/Delete Button Issue** - Fixed buttons causing page reload when clicked. Added `type="button"` attribute to Edit and Delete buttons in webhook list to prevent unintended form submission.
     10• **Improved Webhook Management UX** - Users can now reliably edit and delete webhooks without experiencing page refreshes.
     11
     12### Technical Details
     13
     14• Modified `renderWebhooks()` function in JavaScript to include `type="button"` on action buttons
     15• Prevents default submit behavior when buttons are inside parent `<form>` element
     16• Maintains all existing webhook functionality without breaking changes
     17
     18---
    219
    320## 3.0.1 - 2025-01-XX
  • basecloud-utm-tracker/tags/3.0.2/basecloud-utm-tracker.php

    r3460013 r3460030  
    44 * Plugin URI:        https://www.basecloudglobal.com/plugins/utm-tracker
    55 * Description:       The "Big 4" Form Automator. Advanced UTM tracking with automated injection for Gravity Forms, Elementor, WPForms, and Contact Form 7.
    6  * Version:           3.0.1
     6 * Version:           3.0.2
    77 * Author:            BaseCloud Team
    88 * Author URI:        https://www.basecloudglobal.com/
     
    10811081                                    </div>
    10821082                                    <div class="webhook-actions">
    1083                                         <button class="bc-btn bc-btn-sm bc-btn-secondary btn-edit-webhook">Edit</button>
    1084                                         <button class="bc-btn bc-btn-sm bc-btn-red btn-delete-webhook">Delete</button>
     1083                                        <button type="button" class="bc-btn bc-btn-sm bc-btn-secondary btn-edit-webhook">Edit</button>
     1084                                        <button type="button" class="bc-btn bc-btn-sm bc-btn-red btn-delete-webhook">Delete</button>
    10851085                                    </div>
    10861086                                </div>
     
    13021302                            <h1>UTM Tracker</h1>
    13031303                        </div>
    1304                         <span class="bc-version">v3.0.1</span>
     1304                        <span class="bc-version">v3.0.2</span>
    13051305                    </div>
    13061306
  • basecloud-utm-tracker/tags/3.0.2/readme.txt

    r3460013 r3460030  
    44Requires at least: 5.0
    55Tested up to: 6.8
    6 Stable tag: 3.0.1
     6Stable tag: 3.0.2
    77Requires PHP: 7.4
    88License: GPLv2 or later
     
    198198
    199199== Changelog ==
     200
     201= 3.0.2 =
     202* FIXED: Webhook Edit/Delete buttons causing page reload - Added type="button" attribute to prevent form submission
     203* IMPROVED: Webhook management stability and user experience
    200204
    201205= 3.0.1 =
  • basecloud-utm-tracker/trunk/CHANGELOG.md

    r3460013 r3460030  
    11# Changelog
     2
     3## 3.0.2 - 2026-02-12
     4
     5**🔧 Bug Fix Release**
     6
     7### Fixed
     8
     9• **CRITICAL: Webhook Edit/Delete Button Issue** - Fixed buttons causing page reload when clicked. Added `type="button"` attribute to Edit and Delete buttons in webhook list to prevent unintended form submission.
     10• **Improved Webhook Management UX** - Users can now reliably edit and delete webhooks without experiencing page refreshes.
     11
     12### Technical Details
     13
     14• Modified `renderWebhooks()` function in JavaScript to include `type="button"` on action buttons
     15• Prevents default submit behavior when buttons are inside parent `<form>` element
     16• Maintains all existing webhook functionality without breaking changes
     17
     18---
    219
    320## 3.0.1 - 2025-01-XX
  • basecloud-utm-tracker/trunk/basecloud-utm-tracker.php

    r3460013 r3460030  
    44 * Plugin URI:        https://www.basecloudglobal.com/plugins/utm-tracker
    55 * Description:       The "Big 4" Form Automator. Advanced UTM tracking with automated injection for Gravity Forms, Elementor, WPForms, and Contact Form 7.
    6  * Version:           3.0.1
     6 * Version:           3.0.2
    77 * Author:            BaseCloud Team
    88 * Author URI:        https://www.basecloudglobal.com/
     
    10811081                                    </div>
    10821082                                    <div class="webhook-actions">
    1083                                         <button class="bc-btn bc-btn-sm bc-btn-secondary btn-edit-webhook">Edit</button>
    1084                                         <button class="bc-btn bc-btn-sm bc-btn-red btn-delete-webhook">Delete</button>
     1083                                        <button type="button" class="bc-btn bc-btn-sm bc-btn-secondary btn-edit-webhook">Edit</button>
     1084                                        <button type="button" class="bc-btn bc-btn-sm bc-btn-red btn-delete-webhook">Delete</button>
    10851085                                    </div>
    10861086                                </div>
     
    13021302                            <h1>UTM Tracker</h1>
    13031303                        </div>
    1304                         <span class="bc-version">v3.0.1</span>
     1304                        <span class="bc-version">v3.0.2</span>
    13051305                    </div>
    13061306
  • basecloud-utm-tracker/trunk/readme.txt

    r3460013 r3460030  
    44Requires at least: 5.0
    55Tested up to: 6.8
    6 Stable tag: 3.0.1
     6Stable tag: 3.0.2
    77Requires PHP: 7.4
    88License: GPLv2 or later
     
    198198
    199199== Changelog ==
     200
     201= 3.0.2 =
     202* FIXED: Webhook Edit/Delete buttons causing page reload - Added type="button" attribute to prevent form submission
     203* IMPROVED: Webhook management stability and user experience
    200204
    201205= 3.0.1 =
Note: See TracChangeset for help on using the changeset viewer.