- Issue created by @ben coleman
-
matslats →
committed 53b787d0 on 2.0.x
simplification of generated emails; fixed #3452528
-
matslats →
committed 53b787d0 on 2.0.x
I found this issue.
It was because the name field was being populated automatically from the current user.
checkout HEAD- 🇺🇸United States ben coleman
Using the current dev version fixed this. Can we see a release soon?
- Status changed to Fixed
7 months ago 11:33am 17 June 2024 Automatically closed - issue fixed for 2 weeks with no activity.
- 🇮🇳India koushiknaikel
1) I have Added bellow code in file give/give.install
function give_update_10000() {
\Drupal::database()->update('give_donation')->fields(['recurring' => -1])->condition('recurring', 0)->execute();
}
2) drush updb3) I have added bellow code in file give/src/Form/Donation/DonationForm.php after "public function validateForm(array &$form, FormStateInterface $form_state) {"
$form_state->setValue('name', ['0' => [ 'value' => $form_state->getValue('name') ] ] );
Then fixed "donation from crashing" issue for me.