gsamsmith
Forum Replies Created
-
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] PLugin Breaking siteHi there,
We can help resolve that with you no problem. Typically when we hear things like that are happening, it tends to be a JavaScript conflict with another plugin. I’d suggest using the Health Check plugin to troubleshoot that. It will allow you to deactivate all plugins and put your site on a default theme ONLY for yourself — your live visitors will not see that. We have a write-up on that here:
https://givewp.com/documentation/resources/troubleshoot-wordpress-websites-health-check/Then you can enable plugins one at a time and test again until you see the problem again. Then let me know which plugin caused the conflict and I can take a closer look at replicating the issue for you.
Thanks!
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Replace Donate Now ButtonHi there,
You can change the page that donation submission redirects to in the settings of Give.
Navigate to Donations >> Settings >> General, and you’ll see the option to choose the Success Page from the dropdown.
Be sure to still keep the [give_receipt] shortcode on whatever page you redirect to so your donors can receive confirmation the donation processed as Complete.
Have a great rest of your day!
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Paypal is not loadingHi there,
It appears We’ve assisted you with this issue in Priority support, and the fix for this will be in the next release.
If you need any further assistance, please feel free to reach out through Priority Support.
Thanks!
Hi there,
To achieve this effect you’ll need to add some CSS that will target this active button on the Give form. Here is the code you’ll need to get started:
.give-default-level, .give-default-level:hover { background-color: yellow; }If you need assistance adding CSS to your site, here is an article we’ve written that walks you through this:
https://givewp.com/documentation/resources/handling-custom-css-in-wordpress/Thanks, and have a great rest of your day.
Hi there,
Yes, the Stripe payment gateway can be used in test mode.
In order to receive the communication back from Stripe that the donation went through and mark the donation as “Complete” be sure to configure your webhook in the backend of Stripe.
Here is a link to our documentation on this:
https://givewp.com/documentation/add-ons/recurring-donations/supported-payment-gateways/stripe/Have a great rest of your day.
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Edit hover on buttonHi there,
In order to target the hover state on these buttons, you can use this CSS code:
.give-donation-levels-wrap button:hover { background: ADD-YOUR-COLOR !important; }Notice that I put an
!importantin there to force this style, but this is likely being blocked by some other CSS within your themes style.css file that you’ve added trying to get this to work. If you would not like to force this style, I’d recommend finding where this is being loaded and make the needed changes there.Have a great rest of your day!
Hi there,
I’m going to mark this ticket as resolved, but if there is anything else you need don’t hesitate to reach out.
Thanks.
Hi there,
I’m going to mark this ticket as resolved, but if there is anything else you need don’t hesitate to reach out.
Thanks.
Hi there,
I’m going to mark this ticket as resolved, but if there is anything else you need don’t hesitate to reach out.
Thanks.
Hi there,
I’m going to mark this ticket as resolved, but if there is anything else you need don’t hesitate to reach out.
Thanks.
Hi there,
We’d be happy to help get this licensing issue figured out for you.
We’re unable to assist with any of our paid products through this forum, but if you could email our customer success team at customers@givewp.com, we’ll get this all sorted out.
Thanks.
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Form BackgroundHi there,
I’m going to mark this ticket as resolved, but if there is anything else you need don’t hesitate to reach out.
Thanks.
Hi there,
Happy to help out here.
If I understand correctly, mail sends from your WordPress installation when you input the first email address, but not when you’re using a new admin email address.
If so, we’ve written an awesome article that helps troubleshoot common email issues here:
https://givewp.com/documentation/core/frequent-troubleshooting-issues/troubleshooting-common-email-problems/This article walks you through confirming that the emails are being sent and then provides further steps once you’ve isolated the issue.
Have a great day!
Hi there,
Happy to provide some guidance on this.
That’s not something that’s possible out of the box with Give, but it’s a popular request that we have made a custom snippet for.
Because this is in the form of custom changes to the way Give normally works, there will be instances that the functionality isn’t fully featured, but this gets you most of the way there.
We put together a Ticket Incrementer helper plugin for this purpose, which you can see here:
The instructions at the top of that snippet within the comments walk you through how to use it.
This is also a full plugin just like the add-ons that you have already purchased. Just download it to your computer, upload it to your installation, and activate it.
Implementing this in a staging environment for testing before doing it in a live/production environment is always a best practice.
Have a great rest of your day.
Hi there,
While this isn’t something that’s available with Give out of the box, this is something that could be achieved through custom development.
Here is a jQuery code snippet that we’ve used to mark other checkboxes as checked by default as a great place to start:
https://github.com/impress-org/give-snippet-library/blob/master/add-on-snippets/tributes/default-tributes-to-yes.phpI’ve made some tweaks to it as an example that should get you what you’re after:
/** * Default the anonymous selection to "checked" * */ function my_give_anonymous_by_default() { ?> <script> jQuery("input[name=give_anonymous_donation][value='1']").prop("checked", true); </script> <?php } add_action('give_donation_form_after_submit', 'my_give_anonymous_by_default');We strongly recommend you try this first in a staging or local development environment to ensure compatibility.
Please note that this code snippet is provided as an example of how you can extend Give 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.
Have a great rest of your day.
- This reply was modified 6 years, 10 months ago by gsamsmith.