Mohd Akram
Forum Replies Created
-
Forum: Plugins
In reply to: [Flexible Donations for Stripe] Does not sent an email after the donationHi @tiotrom
The plugin uses php mail() to send the emails to the donors.
If the email is not sent, please check and configure SMTP in your WordPress, this should resolve the issue for the emails not sending.
Thanks
Forum: Plugins
In reply to: [Flexible Donations for Stripe] Where can donors manage their donations?Hi @tiotrom
Currently this plugin does not support donor’s donation management, it is ustilising the stripe’s checkout API so everything can be managed in stripe.
I have taken note and will include this feature in the future release.
Thank you.
Forum: Plugins
In reply to: [Flexible Donations for Stripe] Cannot change the dollar currency signHi @tiotrom
This issue has been fixed and a new release is scheduled, please update the plugin once live.
Thank you for your valuable contribution.
Please leave a review, it will help me to continue contribute to the community.
Forum: Plugins
In reply to: [Flexible Donations for Stripe] No details about how to configure it properlyHi @tiotrom
I have published the new version that includes this change.
Thank you for your valuable contribution.
Forum: Plugins
In reply to: [Flexible Donations for Stripe] Cannot change the dollar currency signHi @tiotrom
Thank you for finding this major issue in the plugin.
If you can, please create an issue in the plugin GitHub repo https://github.com/iamakram22/flexible-donations-for-stripe/issues
I will fix this issue as soon as I can.
Thanks
Forum: Plugins
In reply to: [Flexible Donations for Stripe] No details about how to configure it properlyHi @tiotrom,
Thank you for sharing your valuable feedback,
You can get the instruction of the Webhook setup in the plugin settings Settings > Stripe Integration
The plugin require:
- checkout.session.completed
- invoice.payment_succeeded
- customer.subscription.deleted
I will update the event for the webhook required in the next update.
Thank you so much for flagging this.
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF®)] Issue with ACF Shortcode Not WorkingI am on wordpress 6.6.1 and the code provided by @ricardogilgomes is working well for me.
folloing is the code for reference
function force_acf_shortcode($atts) {
$value = apply_filters('acf/format_value', get_field($atts['field'], $atts['post_id']));
return $value;
}
add_shortcode('acf', 'force_acf_shortcode');