Matt Cromwell
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Cancel Url@mrwilds — our Support Team at GiveWP definitely can help you, but we don’t have a “Cancel URL” within our plugin, so in order for us to help in our support forum, please provide us with a bit more information, like links to your page so we can see the problem live, what steps you take that result in that error, etc. The more information you can provide us in our forum the better.
Thanks!
Hi @fa1976itb
Speaking for GiveWP, this is really a limitation of PayPal because they only support ONE IPN. And if you plan to use PayPal Standard with both GiveWP and any other platform at all, then you’ll need multiple IPN’s.
So… the only workaround for that is Zapier. They have a really useful write-up on this.
https://zapier.com/help/doc/how-use-multiple-ipns-paypalAnother piece of good news though is that GiveWP version 2.8 is coming up and it includes PayPal’s new Commerce platform which is a replacement for PayPal Standard. Once you switch to that in GiveWP then all your IPN worries will go away too. That should be out within the next few weeks.
Thanks!
@maru220v — this should be resolved now. Please update to version 1.1.1 and confirm it’s all fixed on your end.
Thanks for your patience!
@maru220v — I just replicated that problem as you described it, working on a patch right now.
Hi @maru220v — yes I pushed an update out last week that resolves this. Please update to the latest version. Also see the FAQ about this in case you don’t see the options updated, you’ll need to clear your transients cache.
HI @babel391 — you’re fast! We just published 2.7 late last night and hadn’t had a minute to publish the blog article yet, but I just did so that link should work great now.
Thanks!
Ya, I think the option you should choose is “Give Core” — because you’re really asking about a lot of different features we have across the whole plugin.
But I really think our Priority Support folks are best suited to help you out since it sounds like there’s a lot of nuance to this situation.
Thanks!
HI @zocios — We do have robuts Import features, which you can read about in more detail here:
https://givewp.com/documentation/core/tools/import/But I understand that unique use-cases need a bit more nuance. I’d recommend you reach out to our Priority Support team for more nuanced and detailed help:
https://givewp.com/priority-supportIf you are not a current customer, we’d still love to help, so reach out via our contact form and reference this ticket, say I sent you, we’ll get you worked out no problem:
https://givewp.com/contact-usThanks!
Hi there, I replicated that problem as you described it. I created this issue to address it in a future release. I’m working to push an update out ideally next week.
I’ll keep you posted on my progress. Thanks!
Hi there, it’s possible there’s an issue with the select field only populating 9 search results. Let me look into it a bit and get back to you.
Hi @jobsgivers — apologies for the delayed response. Is this resolved now? If not, which two versions of Easy Table of Contents are you dealing with? Meaning, which version is it on, and which are you trying to rollback to?
Sometimes a dev might “tag” the release correctly, but their main php file shows the version incorrectly and that might cause this issue. But I need to know which versions to look at.
Thanks!
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Snippet for give receiptIf you want it for ALL receipt pages, just remove the body class. like this:
#give_donation_receipt { display: none; }If you need it for multiple pages, but NOT all pages, you’ll separate each with a comma, like this:
body.page-id-5 #give_donation_receipt, body.page-id-6 #give_donation_receipt, body.page-id-7 #give_donation_receipt, body.page-id-8 #give_donation_receipt { display: none; }Thanks!
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Snippet for give receiptI see… ah, that is a tricky, niche use-case, but I can see why you need it. I might have to account for that in the Per Form Confirmations add-on and just list all pages instead of searching only for pages that have that shortcode.
For now, though, if you want to hide it ONLY on certain forms (not all forms), then you’ll need to target the specific Donation Confirmation page by it’s body class. Grab the page ID of that page, and do this:
body.page-id-5 #give_donation_receipt { display: none; }Keep in mind that the body classes can sometimes be tweaked by your theme, so MOST LIKELY your body class outputs like that, but if it doesn’t you’ll have to see how your theme tweaked it.
If you haven’t dealt with custom CSS before, you can review our tutorial here:
https://givewp.com/documentation/resources/handling-custom-css-in-wordpress/Thanks!
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Snippet for give receiptThe give_receipt is output on that page via a shortcode:
[give_receipt]So just remove that from the page and the receipt will not show there at all.Thanks!