Skip to content

Commit

Permalink
Merge branch 'hotfix/multi-form-goal-shortcode-7060' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
angelablake committed Oct 20, 2023
2 parents 5788332 + c75f4f5 commit 538aff4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion give.php
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ private function setup_constants()
{
// Plugin version.
if (!defined('GIVE_VERSION')) {
define('GIVE_VERSION', '3.0.1');
define('GIVE_VERSION', '3.0.2');
}

// Plugin Root File.
Expand Down
8 changes: 6 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -262,9 +262,13 @@ The 2% fee on Stripe donations only applies to donations taken via our free Stri
10. Use almost any payment gateway integration with GiveWP through our add-ons or by creating your own add-on.

== Changelog ==
= 3.0.3: October 20th, 2023 =
* Fix: Forms no longer have fatal errors on Elementor websites when the Display Content option is enabled
= 3.0.2: October 19th, 2023 =
<<<<<<<<< Temporary merge branch 1
* Fix: Stripe per-form settings are included when migrating a form to the Visual Donation Form Builder
=========
* Fix: Gateways are properly separated in the settings page and Global Settings for Fee Recovery shows all gateways when you select per gateway

>>>>>>>>> Temporary merge branch 2
= 3.0.1: October 17th, 2023 =
* Fix: Resolved a conflict with Matomo plugin that was causing a fatal error

Expand Down
3 changes: 2 additions & 1 deletion src/MultiFormGoals/ProgressBar/Model.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ public function __construct(array $args)
/**
* Get forms associated with Progress Bar
*
* @since 3.0.3 Return empty array instead of false
* @since 2.9.0
*/
public function getForms(): array
Expand Down Expand Up @@ -78,7 +79,7 @@ public function getForms(): array

return $query->posts;
} else {
return false;
return [];
}
}

Expand Down

0 comments on commit 538aff4

Please sign in to comment.