17
The donation goal on the multi-step form should work when donations have been made
complete
Jason Adams
complete
Greetings! This was resolved in GiveWP 2.22.0. Please make sure you've updated to the latest and let us know if you run into any issues!
Ravinder Kumar
ready for release
Ravinder Kumar
in progress
Rick Alday
A workaround, for now, is to use this snippet.
function give_fix_msf_goal_bar() {
wp_add_inline_style(
'give-sequoia-template-css',
'
.give-progress-bar, .give-progress-bar>span {display:flex;}
'
);
}
add_action('wp_print_styles', 'give_fix_msf_goal_bar', 10);
If you need assistance implementing custom PHP code on your website we have this guide:
Please note that this code snippet is provided as an example of how you can extend GiveWP with code. It’s up to you to implement and customize to your liking. We cannot provide support for custom code on your website, only the code that we create and distribute.
V
Victor Emanuel
Rick Alday: thanks for this reply. Until the fix will be implemented this really helps!
J
Jeremy Hammond
Rick Alday: Thanks for that! Adding this to my functions.php in my child them worked. Hopefully, a permanent fix will be included in a future GiveWP update.
V
Victor Emanuel
this is strange is just after updating to the last version. Before it worked
J
Jeremy Hammond
Victor Emanuel: Same here. It was working fine before, and I only just noticed it not working recently.