Matt Cromwell
Forum Replies Created
-
Yes, you can customize the color, but let’s get it working as intended first then circle back on that.
Can you provide me with the following:
1. A link to your English Form
2. A link to your French Form
3. The exact shortcode with all attributes that you have implemented on both pages
4. Do you have other forms besides those two?Thanks!
Hi there,
This can be done with a custom PHP filter. For example, here’s the snippet with the same wording, but the word “donation” removed:
add_filter('give_fee_break_down_message', 'my_custom_give_fee_language'); function my_custom_give_fee_language() { return __( '{amount} plus {fee_amount} to help cover fees.', 'give-fee-recovery' ) }I’ve added a more customized example to our Snippet Library:
https://github.com/impress-org/give-snippet-library/blob/master/translation-snippets/change-all-instances-donation.phpIf you need guidance implementing custom PHP functions on your website, we have this guide here: https://givewp.com/documentation/resources/adding-custom-functions-to-your-wordpress-website/
Thanks!
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Warning: Division by zeroHi there,
That looks like a problem with the theme, they’ve customized our templates and those customizations are probably outdated.
Is that theme publicly available somewhere so I can test it? I can give more insight if I have access to the files.
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] One button launch adjustHi there,
It looks like you want that button to be in your main menu.
We put together a tutorial on how you might do that here:
https://givewp.com/add-give-form-popup-to-menu/Review that and let me know if that answers your question or if you have any other issues at all.
Thanks!
Hi there,
The way most all multi-language sites approach this when they have to have duplicate forms is to DISABLE the goals on the individual forms, and use our
[give_totals]shortcode. See our docs here:
https://givewp.com/documentation/core/shortcodes/give_totalsLet me know if you have additional questions.
HI there,
I just did a test and it looks like you only have Offline Payments enabled at the moment. Can you enable PayPal again so I can see the problem live?
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Problems with DonationGlad to hear you got it worked out with our docs. Thanks for the very kind rating as well!
I guess it can work if you’ve made the customizations correctly, but I can’t provide support for your custom coded solutions. I can try to replicate the problem if you can provide the code you use to make those changes, but without me being able to replicate the problem I can’t say much about how it works or is broken — I can say though that without those customizations Give should work as intended.
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Problems with DonationI don’t mean the donor/user browser cache. I mean your caching.
We have a doc specifically on excluding WP Engine caching here:
https://givewp.com/documentation/resources/wp-engine-cache-exclusion-donation-confirmation-page/Try that out and let us know how that goes.
Glad to hear it, thanks for the update.
Moving database data around can be a real pain, but unfortunately there’s little we can do to resolve that for you. Glad it worked out though in the end, great work!
Hi all,
The above snippet has some typos which is why it wasn’t working as intended. Use this instead please:
function vc_give_text_switcher( $translation, $text, $domain ) { if ( 'give' === $domain && 'Make this an anonymous donation.' === $text ) { $translation = __( 'Translated text 1' ); } // For the help text. if ( 'give' === $domain && 'Would you like to prevent your name, image, and comment from being displayed publicly?' === $text ) { $translation = __( 'Translated Text 2' ); } return $translation; } add_filter( 'gettext', 'vc_give_text_switcher', 10, 3 );Thanks!
Glad to hear it.
If you’re enjoying Give and appreciate our support, we’d love a kind review from you here:
https://ww.wp.xz.cn/support/plugin/give/reviews/Thanks!
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Problems with DonationHI there,
That is most likely due to that page being cached. If you are using any plugins or server-side caching, make sure the Donation Confirmation page, and your Donation History page are all excluded from all caching.
Give has to send information to that page via a “session” and it cannot do that if the page is cached.
If you feel you’ve done that completely and it’s still not working as intended, then please provide me with the following additional information:
- What webhost are you using and what caching solutions do they provide that you are using?
- Your System Info, found at “Donations > Tools > System Info”
Thanks!
I haven’t been able to replicate that problem on your site. But I believe that most problem you are experiencing would be related to this more serious issue you reported here:
https://ww.wp.xz.cn/support/topic/other-option-is-not-working-in-mobile/If we can assure that all your customizations are removed from Give, and confirm that everything works as intended from there, then I think resolving these other minor issues gets a lot easier. So let’s keep the conversation on that other thread for now.
Changing the Give code directly is not recommended at all specifically because of the problem you indicate.
The way you can keep your changes is by extending Give via our filters and actions, or via our templates.
Here’s a few resources to help you understand how this works with Give and with WordPress in general.
Thanks!